Commit Graph

3018 Commits

Author SHA1 Message Date
[CST] Focus
6c54311f81 gui/scan_setup.cpp: add dynamic diseqc options switch based on frontend mode
Origin commit data
------------------
Commit: bfc30ae53e
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-21 (Fri, 21 Mar 2014)
2014-03-21 17:18:26 +04:00
[CST] Focus
8b880a8221 gui/widget/menue.cpp: add CMenuOptionChooser::setOptions
Origin commit data
------------------
Commit: b36a66db34
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-21 (Fri, 21 Mar 2014)
2014-03-21 17:18:21 +04:00
[CST] Focus
98b23534f3 gui/scan_setup.cpp: add fast-scan operators, add fast-scan diseqc auto-config and menu to change diseqc
Origin commit data
------------------
Commit: acffe8024d
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-20 (Thu, 20 Mar 2014)
2014-03-21 17:18:06 +04:00
[CST] Focus
356ca7de2b gui/cam_menu.cpp: rework, handle mmi timeout, close menu on CI/card insert/remove
Origin commit data
------------------
Commit: ffce0866bc
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-17 (Mon, 17 Mar 2014)
2014-03-21 17:17:53 +04:00
[CST] Focus
2f859463fc gui/cam_menu.cpp: use dialog for menu/list messages generated outside of menu
Origin commit data
------------------
Commit: ce4552b4b9
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-14 (Fri, 14 Mar 2014)
2014-03-21 17:17:42 +04:00
[CST] Focus
63839cd27d gui/cam_menu.cpp: cleanup, fix memleak when messages ignored
Origin commit data
------------------
Commit: a5f2ebaec3
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-14 (Fri, 14 Mar 2014)
2014-03-21 17:17:32 +04:00
Jacek Jendrzej
19e3d4a5f4 upnpbrowser.cpp: -add albumArtURI parse
Origin commit data
------------------
Commit: 98bdb43608
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2014-03-19 (Wed, 19 Mar 2014)
2014-03-19 18:35:10 +01:00
Michael Liebmann
a27f7c3dfb CLuaInstance::runScript: Set script parameter 0 to 'script name'...
...for compatibility with standalone lua scripts


Origin commit data
------------------
Commit: b80e7480a2
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-19 (Wed, 19 Mar 2014)
2014-03-19 16:03:38 +01:00
Michael Liebmann
c700df0074 CLuaInstance: Add runScript() function for using in Lua script
- Script runs in a new instance in neutrino context
 Example:
 local n = neutrino()
 n:runScript(filename [, args, ...])


Origin commit data
------------------
Commit: 0a957abf31
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-17 (Mon, 17 Mar 2014)

Origin message was:
------------------
CLuaInstance: Add runScript() function for using in Lua script

- Script runs in a new instance in neutrino context
 Example:
 local n = neutrino()
 n:runScript(filename [, args, ...])
2014-03-19 10:14:43 +01:00
Michael Liebmann
41fb2b5514 CLuaInstance: Optional specification of parameters for runScript()
- Add parameters as std::vector and possibility of return of
 status and error messages. (THX Martii)
 Example:
 void runScript(const char *fileName, std::vector<std::string> *argv,
 		std::string *result_code, std::string *result_string,
 		std::string *error_string);

- Add Parameters as const char*, last parameter to NULL is imperative.
 Example:
 void runScript(const char *fileName, const char *arg0, const char *arg1, ..., NULL);


Origin commit data
------------------
Commit: b61a225d2b
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-17 (Mon, 17 Mar 2014)

Origin message was:
------------------
CLuaInstance: Optional specification of parameters for runScript()

- Add parameters as std::vector and possibility of return of
 status and error messages. (THX Martii)
 Example:
 void runScript(const char *fileName, std::vector<std::string> *argv,
 		std::string *result_code, std::string *result_string,
 		std::string *error_string);

- Add Parameters as const char*, last parameter to NULL is imperative.
 Example:
 void runScript(const char *fileName, const char *arg0, const char *arg1, ..., NULL);
2014-03-19 10:14:43 +01:00
Michael Liebmann
26f9f30699 CStringInputSMS: Add '%' to valid chars
Origin commit data
------------------
Commit: 5d4286285a
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-18 (Tue, 18 Mar 2014)
2014-03-18 19:05:33 +01:00
Michael Liebmann
27d30d9c99 CLuaInstance: Replace cwindow header_height & footer_height
- Replace with headerHeight & footerHeight
- Set header_height & footer_height to deprecated


Origin commit data
------------------
Commit: 2dbdb8798e
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-16 (Sun, 16 Mar 2014)
2014-03-16 12:33:26 +01:00
Michael Liebmann
586253ea2e CLuaInstance: Add various CComponentsPicture functions
- Added: new, paint, hide, setpicture


Origin commit data
------------------
Commit: 1e78781d18
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-16 (Sun, 16 Mar 2014)
2014-03-16 12:33:26 +01:00
Michael Liebmann
7e87ddf89d CLuaInstance: Add setCaption & paintHeader function to cwindow
Origin commit data
------------------
Commit: a501f4e10e
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-16 (Sun, 16 Mar 2014)
2014-03-16 12:33:26 +01:00
Michael Liebmann
4fc816533e CLuaInstance: Add function 'functionDeprecated()' for debug output...
...when a script function is deprecated.


Origin commit data
------------------
Commit: 5136563035
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-16 (Sun, 16 Mar 2014)
2014-03-16 12:33:26 +01:00
Michael Liebmann
f269b6525b CLuaInstance: Add setText function to ctext
Origin commit data
------------------
Commit: 4df0449e39
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-16 (Sun, 16 Mar 2014)
2014-03-16 12:33:26 +01:00
Michael Liebmann
58b5c31eaa CLuaInstance::ComponentsTextNew: Add 'parent' parameter...
...for the integration of ctext in a parent cwindow


Origin commit data
------------------
Commit: 81608cbd3f
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-16 (Sun, 16 Mar 2014)
2014-03-16 12:33:26 +01:00
Michael Liebmann
de0d063b32 CLuaInstance: Add additional tableLookup for get userdata
Origin commit data
------------------
Commit: f4c70c96a5
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-16 (Sun, 16 Mar 2014)
2014-03-16 12:33:26 +01:00
Michael Liebmann
dd56269e3e CLuaInstance: Add debug output to CWindowDelete/ComponentsTextDelete
Origin commit data
------------------
Commit: 623efecc2f
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-16 (Sun, 16 Mar 2014)
2014-03-16 12:33:26 +01:00
Michael Liebmann
496f901f64 CRecordSetup: Fix menu hint specifier
Origin commit data
------------------
Commit: bb4eccfbed
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-14 (Fri, 14 Mar 2014)
2014-03-14 18:24:33 +01:00
FlatTV
dfd972bfe7 record menu: add filename template
Origin commit data
------------------
Commit: e0055b5339
Author: FlatTV <FlatTV@gmx.de>
Date: 2014-03-13 (Thu, 13 Mar 2014)
2014-03-14 09:39:57 +01:00
[CST] Focus
c84dab0c2d gui/bouquetlist.cpp: allow to delete whole satellite from satellite bouquet view
Origin commit data
------------------
Commit: 90768b15ac
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-13 (Thu, 13 Mar 2014)
2014-03-13 16:06:20 +04:00
[CST] Focus
c6d5716c8f neutrino.cpp: add timeshift record duration setting
Origin commit data
------------------
Commit: 6201a95358
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-11 (Tue, 11 Mar 2014)
2014-03-11 16:21:32 +04:00
martii
e87b54ecfe gui/movieplayer: create and use a movieinfo copy (fixes timeshift playback)
Origin commit data
------------------
Commit: 87d5f4feb9
Author: martii <m4rtii@gmx.de>
Date: 2013-09-26 (Thu, 26 Sep 2013)
2014-03-11 13:31:46 +04:00
[CST] Focus
b06b434ccf gui/osdlang_setup.cpp: revert language selection to old behaviour: close menu after select
Origin commit data
------------------
Commit: 793c3aab5a
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-06 (Thu, 06 Mar 2014)
2014-03-06 16:09:10 +04:00
[CST] Focus
a18f20fbd6 gui/bouquetlist.cpp: fix inactive color when called to add channel to bouquet
Origin commit data
------------------
Commit: 040b2a958e
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-05 (Wed, 05 Mar 2014)
2014-03-06 16:09:10 +04:00
[CST] Focus
e47eb1a1f7 gui/pipsetup.cpp: support different PIP setup for tv and radio modes
Origin commit data
------------------
Commit: ea1e2706f8
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-05 (Wed, 05 Mar 2014)
2014-03-06 16:09:10 +04:00
[CST] Focus
5d71bd63b9 gui/scan_setup.cpp: move rotor options to its own menus
Origin commit data
------------------
Commit: 7682d58070
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-04 (Tue, 04 Mar 2014)
2014-03-06 16:09:10 +04:00
[CST] Focus
bd8ed0ffcd gui/miscsettings_menu.cpp: remove global rotor_swap option
Origin commit data
------------------
Commit: a3f4cbaa90
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-04 (Tue, 04 Mar 2014)
2014-03-06 16:09:09 +04:00
[CST] Focus
1ce3c60c74 gui/scan_setup.cpp, gui/motorcontrol.cpp: use per frontend rotor swap option
Origin commit data
------------------
Commit: 929eb86760
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-03-04 (Tue, 04 Mar 2014)
2014-03-06 16:09:09 +04:00
vanhofen
50f87f5921 user_menue.cpp: whitespace cleanup
Origin commit data
------------------
Commit: a05121d9b7
Author: vanhofen <vanhofen@gmx.de>
Date: 2014-03-06 (Thu, 06 Mar 2014)

Origin message was:
------------------
- user_menue.cpp: whitespace cleanup
2014-03-06 12:56:24 +01:00
vanhofen
b54e30a612 user_menu: add some pointers to delete
Origin commit data
------------------
Commit: 7c19f53e4b
Author: vanhofen <vanhofen@gmx.de>
Date: 2014-03-06 (Thu, 06 Mar 2014)

Origin message was:
------------------
- user_menu: add some pointers to delete
2014-03-06 12:45:48 +01:00
vanhofen
9d4345bed8 hdd_menu: fix hdd_sleep 'off'
Origin commit data
------------------
Commit: ea89eae41e
Author: vanhofen <vanhofen@gmx.de>
Date: 2014-03-06 (Thu, 06 Mar 2014)

Origin message was:
------------------
- hdd_menu: fix hdd_sleep 'off'
2014-03-06 09:59:18 +01:00
Thilo Graf
342552c787 CComponents: remove error message.
Log output should be enough.


Origin commit data
------------------
Commit: e6a004be87
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-03-05 (Wed, 05 Mar 2014)
2014-03-05 12:10:17 +01:00
Michael Liebmann
29c411690c CTimerList: Fix eventType CTimerd::TIMER_EXEC_PLUGIN
Origin commit data
------------------
Commit: 8505e1c6d7
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-04 (Tue, 04 Mar 2014)
2014-03-04 07:17:41 +01:00
Michael Liebmann
570b793a76 CComponents: More precise error message (commit aa7a96a)
Origin commit data
------------------
Commit: d1b8246316
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-03 (Mon, 03 Mar 2014)
2014-03-03 20:20:57 +01:00
Michael Liebmann
81dff173fe CPluginList: Supplement to commit e6743c8 (RC_setup for exit all menus)
Origin commit data
------------------
Commit: c0245159f4
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2014-03-03 (Mon, 03 Mar 2014)
2014-03-03 20:20:57 +01:00
Thilo Graf
f33efdbdc4 CComponents: add new parameter 'parent'
Use strictly CComponentsForm as parent parameter in constructors.
Some parts have been cleaned up (Constructors, init methodes removed)

New parameter makes it possible already add current item in constructor.
So in mostly situations is it not necessary to use explicit addCCItem(),
but addCCItem()is still valid and necessary in certain situations.

Affected are all cc-classes and their derivates.
Some classes must or can be adapted later. The function is
not currently restricted, because usage of parent parameter is not explicit
defined in constructors, see CImageInfo, here yet are used addCCItem()
methodes.

Generally this parameter is located in the constructors before bool has_shadow,
but it is not sure whether it would be better to use this parameter as the first.
That remains to be clarified.


Origin commit data
------------------
Commit: 23d7b62cf0
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-03-03 (Mon, 03 Mar 2014)
2014-03-03 09:43:39 +01:00
Thilo Graf
111a2f9946 cc_types.h: add forward declaration for CComponentsForm()
required for parameter in CComponentsItem constructors


Origin commit data
------------------
Commit: 4a76ca953e
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-27 (Thu, 27 Feb 2014)
2014-03-03 08:54:11 +01:00
Thilo Graf
fb883e238a CComponentsPicture: add comment to isPicPainted()
Not to confuse with isPainted(). Because isPicPainted() is related to
internal image.


Origin commit data
------------------
Commit: 2fade10a11
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-27 (Thu, 27 Feb 2014)
2014-03-03 08:54:11 +01:00
Thilo Graf
bafa64bba9 CComponentsItem: add methodes to set width and height via percent value
Percent value is related to current screen or parent size


Origin commit data
------------------
Commit: a33cad448a
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-27 (Thu, 27 Feb 2014)
2014-03-03 08:54:10 +01:00
Thilo Graf
9aa9f374e6 CComponentsItem: comments corrected
Origin commit data
------------------
Commit: 9b18d0cf5b
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-27 (Thu, 27 Feb 2014)
2014-03-03 08:54:10 +01:00
Thilo Graf
cc24c195ee CComponentsItem: move/rename doCenter()to base class CComponentsItem
So it's possible to use this method for all cc-items.
setCenterPos() comes now with parameter 'along_mode' (CC_ALONG_X, CC_ALONG_Y).
So it's possible to center in x or y direction. As default are
both directions predefined.


Origin commit data
------------------
Commit: 8a897103ac
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-27 (Thu, 27 Feb 2014)
2014-03-03 08:54:10 +01:00
Thilo Graf
ecdc19e8bc CComponentsItem: add members to set item position via percent value
Origin commit data
------------------
Commit: 38dffb8456
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-26 (Wed, 26 Feb 2014)
2014-03-03 08:54:10 +01:00
Thilo Graf
5c8006256e CMenuItem: remove redundant member for background paint
It seems this method came with more functionality in past,
but it's currently not required in that Form.


Origin commit data
------------------
Commit: 8a39f01a79
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-26 (Wed, 26 Feb 2014)
2014-03-03 08:54:10 +01:00
Thilo Graf
20782a486c CComponentsInfoBox, CComponentsPicture: add overloaded members setPicture()
Origin commit data
------------------
Commit: c34f25bb7d
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-26 (Wed, 26 Feb 2014)
2014-03-03 08:54:09 +01:00
Thilo Graf
aa7a96a5a8 CComponents: add member CheckFbData() for fbdata check
This check happens several times, therefore it is senseful, to move into own member.
Function returns false on error and is used here to show an error message if
something was wrong.
Such errors can happen on position or dimension errors e.g. out of screen or
too large display values.

Note: this is only an emergency helper for debugging on
fatal errors during developing of window stuff. Mostly errors
of this kind causing crashes and must be fixed.


Origin commit data
------------------
Commit: f813b9ea98
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-02-23 (Sun, 23 Feb 2014)

Origin message was:
------------------
CComponents: add member CheckFbData() for fbdata check

This check happens several times, therefore it is senseful, to move into own member.
Function returns false on error and is used here to show an error message if
something was wrong.
Such errors can happen on position or dimension errors e.g. out of screen or
too large display values.

Note: this is only an emergency helper for debugging on
fatal errors during developing of window stuff. Mostly errors
of this kind causing crashes and must be fixed.
2014-03-03 08:54:09 +01:00
Thilo Graf
217b46e625 CComponentsFrmClock: remove statement
stopThread() is doing check against NULL itself


Origin commit data
------------------
Commit: 2b65f1d1b3
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-12-16 (Mon, 16 Dec 2013)
2014-03-03 08:54:09 +01:00
Thilo Graf
247a4d7c1c CComponentsFrmClock: change wording of comment, was unsuituable
Origin commit data
------------------
Commit: c6db496de6
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-12-16 (Mon, 16 Dec 2013)
2014-03-03 08:54:08 +01:00
martii
e6743c853c gui/pluginlist: drop custom menu implementation
(but use the menu-hint as plugin-description)


Origin commit data
------------------
Commit: cf43a6f2a6
Author: martii <m4rtii@gmx.de>
Date: 2014-03-02 (Sun, 02 Mar 2014)
2014-03-02 23:00:30 +01:00