Commit Graph

6600 Commits

Author SHA1 Message Date
Michael Liebmann
3c45c9b094 CNeutrinoFonts: Fix segfault, when fontfile changed
- use std::string for font and style names


Origin commit data
------------------
Commit: aca97e210e
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-07-03 (Wed, 03 Jul 2013)
2013-07-21 22:06:40 +02:00
Michael Liebmann
af1f9a1e14 Add option to resize the VolumeBar
- Minimum height: Height of NEUTRINO_ICON_VOLUME + 2 pixels
- Maximum height: 50 pixels
- Setting can be changed with:
 Menu -> Settings -> OSD -> Volume -> Height of display


Origin commit data
------------------
Commit: 0a0035c2ae
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-06-29 (Sat, 29 Jun 2013)

Origin message was:
------------------
Add option to resize the VolumeBar

- Minimum height: Height of NEUTRINO_ICON_VOLUME + 2 pixels
- Maximum height: 50 pixels
- Setting can be changed with:
 Menu -> Settings -> OSD -> Volume -> Height of display
2013-07-21 22:06:05 +02:00
Michael Liebmann
1b938c2b08 Use dynamic font in CVolumeBar
Origin commit data
------------------
Commit: 5267667cfb
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)
2013-07-21 22:06:00 +02:00
Michael Liebmann
10cb9d1953 Add dynamic fonts to CNeutrinoFonts
- Dynamic fonts with their size matched to a given text box.
 The display size is retained even when changing the font size factor.
- "Normal" dynamic fonts, characterized by FONT_ID_SHARE in
 CNeutrinoFonts::getDynFont() can be used by several objects
 simultaneously. That is, if the calculated font size and font style
 are the same, the existing font is used.
- Dynamic font for exclusive application will only be used by an object.
 For this, a FontID (FONT_ID_xxx, defined in src/driver/neutrinofonts.h)
 in CNeutrinoFonts::getDynFont() is specified.
- Objects with dynamic font for exclusive application can resize at
 run time, the font size will be adjusted accordingly.
- The return value of CNeutrinoFonts::getDynFont() is a pointer
 to a font, for example:
 Font** font = CNeutrinoFonts::getInstance()->getDynFont(...);
 (*font)->RenderString(...)


Origin commit data
------------------
Commit: 0bcb7bcfae
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-06-28 (Fri, 28 Jun 2013)

Origin message was:
------------------
Add dynamic fonts to CNeutrinoFonts

- Dynamic fonts with their size matched to a given text box.
 The display size is retained even when changing the font size factor.
- "Normal" dynamic fonts, characterized by FONT_ID_SHARE in
 CNeutrinoFonts::getDynFont() can be used by several objects
 simultaneously. That is, if the calculated font size and font style
 are the same, the existing font is used.
- Dynamic font for exclusive application will only be used by an object.
 For this, a FontID (FONT_ID_xxx, defined in src/driver/neutrinofonts.h)
 in CNeutrinoFonts::getDynFont() is specified.
- Objects with dynamic font for exclusive application can resize at
 run time, the font size will be adjusted accordingly.
- The return value of CNeutrinoFonts::getDynFont() is a pointer
 to a font, for example:
 Font** font = CNeutrinoFonts::getInstance()->getDynFont(...);
 (*font)->RenderString(...)
2013-07-21 22:05:18 +02:00
Michael Liebmann
09d3ccc359 Add new class CNeutrinoFonts for setup and modify neutrino fonts
- move SetupFonts() from CNeutrinoApp to CFontSetup


Origin commit data
------------------
Commit: 465d2aba23
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-06-27 (Thu, 27 Jun 2013)
2013-07-21 22:05:14 +02:00
Thilo Graf
feda180ec0 CComponentsText: do also paint text on changed text color
Origin commit data
------------------
Commit: 2cffcf53a3
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-07-20 (Sat, 20 Jul 2013)
2013-07-21 22:05:07 +02:00
Thilo Graf
bc960de156 CFrontend: fix compiler warnings, wrong datatype
There are a lot of possible conversion problems
to one data type from other datatype those may alter values.
Sure, not for all, but on this quantity it's not to be underestimated.
This should be considered in more detail and should be
corrected over time, if required.


Origin commit data
------------------
Commit: e199d0c558
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-07-18 (Thu, 18 Jul 2013)
2013-07-21 22:04:49 +02:00
Thilo Graf
0b4015aecd CChannelList: use matching datatype for color
Origin commit data
------------------
Commit: 72c4deb17c
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-07-15 (Mon, 15 Jul 2013)
2013-07-21 22:04:10 +02:00
Thilo Graf
37367ef7b0 CBEChannelWidget: use int instead float, is unnecessary here
Origin commit data
------------------
Commit: 8b4cff7146
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-07-15 (Mon, 15 Jul 2013)
2013-07-21 22:03:57 +02:00
Thilo Graf
b5bfaf531c localize: use general syntax for #incude
Origin commit data
------------------
Commit: 9cfd8e675d
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-07-12 (Fri, 12 Jul 2013)
2013-07-21 22:03:41 +02:00
Thilo Graf
4f239ed628 CZapitChannel: use unsigned char instead size_t
This removes some annoying warnings with specific compiler flags.


Origin commit data
------------------
Commit: 71423089b0
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-07-11 (Thu, 11 Jul 2013)
2013-07-21 22:03:27 +02:00
Thilo Graf
510240d2b8 CComponentsText: try to use an inherited version of CBox class
It's a partial solution to use full functionality for size handling
of CTextBox in CComponentsText.


Origin commit data
------------------
Commit: a6c43a62bd
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-07-12 (Fri, 12 Jul 2013)
2013-07-21 22:02:43 +02:00
Thilo Graf
e341b576f5 CComponentsText: remove delete of CBox() object
Obtain of one instance of CBox() should working
just as like a new instance.


Origin commit data
------------------
Commit: 25c40a63dd
Author: Thilo Graf <dbt@novatux.de>
Date: 2013-07-07 (Sun, 07 Jul 2013)
2013-07-21 22:02:33 +02:00
Michael Liebmann
1a3a6e11b4 Fontrenderer: Use real color values for Renderstring()
Origin commit data
------------------
Commit: 20fd26a65d
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-07-13 (Sat, 13 Jul 2013)
2013-07-21 22:01:52 +02:00
Michael Liebmann
7b6498d39f Replace color indexes of the text colors by real color values for RenderString()
- If necessary, Correct data types of the color values


Origin commit data
------------------
Commit: c60c5c5ce3
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-07-11 (Thu, 11 Jul 2013)
2013-07-21 22:00:58 +02:00
Michael Liebmann
85e658fab5 Define real text color for use in RenderString()
Origin commit data
------------------
Commit: e60067545f
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-07-11 (Thu, 11 Jul 2013)
2013-07-21 22:00:46 +02:00
Michael Liebmann
0e8ca2f896 Add Member to change the OSD color
Origin commit data
------------------
Commit: d1f2726060
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-07-13 (Sat, 13 Jul 2013)
2013-07-21 22:00:33 +02:00
Michael Liebmann
762193a714 src/gui/update_ext.cpp: Fix memleak (Thx SatBaby)
- rename enum's 'RESET_Fxx' => 'CLOSE_Fxx'


Origin commit data
------------------
Commit: 61d36266c8
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-07-19 (Fri, 19 Jul 2013)
2013-07-20 10:21:29 +02:00
[CST] Focus
8d26362363 gui/cam_menu.cpp: dont show CI reset/CI clock if no CI slots
Origin commit data
------------------
Commit: 9cb1a9c335
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
2013-07-18 14:52:00 +04:00
[CST] Focus
1aefd84182 driver/vfd.cpp: fix typo
Origin commit data
------------------
Commit: 6f65e59e22
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
2013-07-18 14:52:00 +04:00
[CST] Focus
1100a5fc23 lib/libcoolstream2: headers update
Origin commit data
------------------
Commit: c337d26f99
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
2013-07-18 14:52:00 +04:00
[CST] Focus
9cb604990d gui/videosettings.cpp: fix unused variable
Origin commit data
------------------
Commit: e6af083de8
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
2013-07-18 14:52:00 +04:00
[CST] Focus
3c67c61259 neutrino.cpp: add buttons backlight settings
Origin commit data
------------------
Commit: c31c9d0e7f
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
2013-07-18 14:52:00 +04:00
[CST] Focus
73847ef23b gui/vfd_setup.cpp: add buttons backlight menu
Origin commit data
------------------
Commit: 990dc117b4
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
2013-07-18 14:52:00 +04:00
[CST] Focus
9d96e4d8c9 locals: add locales for buttons backlight menu
Origin commit data
------------------
Commit: 1dba13d74f
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
0e30a1f501 driver/vfd.cpp: add buttons backlight control
Origin commit data
------------------
Commit: cde862081f
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-18 (Thu, 18 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
ad6e65d08e gui/scan_setup.cpp: show sat diseqc and rotor position in sat config menu
Origin commit data
------------------
Commit: baf2df01dd
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-17 (Wed, 17 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
09cbb77b87 gui/scan_setup.cpp: fix use usals for all option, use per-frontend use_usals
Origin commit data
------------------
Commit: ae1abb6fa6
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-17 (Wed, 17 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
0e4453837a zapit/src/femanager.cpp: save/load frontend use_usals option
Origin commit data
------------------
Commit: 7722ecbdaa
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-17 (Wed, 17 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
8870e2017b zapit/src/frontend.cpp: add per-frontend use_usals option, use gotoXX
for all satellites if enabled


Origin commit data
------------------
Commit: 5b2b623314
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-17 (Wed, 17 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
356af4baed gui/nfs.cpp: RC_spkr clears selected mount entry, based on patch (c) martii <m4rtii@gmx.de>
Origin commit data
------------------
Commit: 77f3f86d30
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-17 (Wed, 17 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
027348d119 gui/filebrowser.cpp: restore selection,
remove double paint on exec(),
remember selected to restore on dir enter with OK button


Origin commit data
------------------
Commit: cc115a3615
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-17 (Wed, 17 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
0f9725796c gui/scan_setup.cpp: fix manual frequency input lenght
Origin commit data
------------------
Commit: 4d7fb7e362
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-13 (Sat, 13 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
b18668f8a3 colorchooser: display selected color in menue, based on patch (c) martii <m4rtii@gmx.de>
Origin commit data
------------------
Commit: 5d95016b37
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-12 (Fri, 12 Jul 2013)
2013-07-18 14:51:59 +04:00
[CST] Focus
2e542cb8ca gui/widget/colorchooser.cpp: add getColor() member
Origin commit data
------------------
Commit: 1f02a0d49e
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-10 (Wed, 10 Jul 2013)
2013-07-18 14:51:59 +04:00
martii
31c9850759 widget/menue: don't render text over right icon
Origin commit data
------------------
Commit: d6de6baebb
Author: martii <m4rtii@gmx.de>
Date: 2013-06-09 (Sun, 09 Jun 2013)
2013-07-18 14:51:59 +04:00
martii
b1dcf5c52a widget/menue: implement CMenuOptionNumberChooser::getWidth()
Origin commit data
------------------
Commit: ca519aa074
Author: martii <m4rtii@gmx.de>
Date: 2013-06-09 (Sun, 09 Jun 2013)
2013-07-18 14:51:58 +04:00
[CST] Focus
036017927a driver/framebuffer.h: add empty blit for neutrino-mp patches
Origin commit data
------------------
Commit: cd8ee4a1c8
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-05 (Fri, 05 Jul 2013)
2013-07-18 14:51:58 +04:00
martii
8290c179ed widget/menu: print right icon regardless of activation status
Origin commit data
------------------
Commit: 8f4eee554c
Author: martii <m4rtii@gmx.de>
Date: 2013-04-08 (Mon, 08 Apr 2013)
2013-07-18 14:51:58 +04:00
martii
b341d224c5 CMenuWidget: add action keys
Conflicts:
	src/gui/widget/menue.h


Origin commit data
------------------
Commit: 3d187e56da
Author: martii <m4rtii@gmx.de>
Date: 2013-04-07 (Sun, 07 Apr 2013)
2013-07-18 14:51:58 +04:00
[CST] Focus
77d4efc95e gui/widget/menue.cpp: add CMenuItem isStatic param, (c) martii <m4rtii@gmx.de>
Origin commit data
------------------
Commit: 8b5bbf8911
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-07-05 (Fri, 05 Jul 2013)
2013-07-18 14:51:58 +04:00
Gaucho316
8170368d1b menue.cpp: fix macro usage of SUB_HEAD
Origin commit data
------------------
Commit: 7702408456
Author: Gaucho316 <Gaucho316@hotmail.com>
Date: 2013-07-15 (Mon, 15 Jul 2013)

Origin message was:
------------------
- menue.cpp: fix macro usage of SUB_HEAD
2013-07-15 23:16:44 +02:00
Jacek Jendrzej
2db4f4f336 fix compil without ENABLE_FASTSCAN
Origin commit data
------------------
Commit: 6948ab4258
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2013-07-15 (Mon, 15 Jul 2013)
2013-07-15 23:16:07 +02:00
J. Krieg
536032b79e imageinfo: add possibility to display a custom text for image version
Origin commit data
------------------
Commit: a1640dd958
Author: J. Krieg <bellum07@googlemail.com>
Date: 2013-07-13 (Sat, 13 Jul 2013)
2013-07-15 23:10:13 +02:00
J. Krieg
3596ddbbca imageinfo: display other version info on missing '.version' file
Origin commit data
------------------
Commit: 1557dafabc
Author: J. Krieg <bellum07@googlemail.com>
Date: 2013-07-13 (Sat, 13 Jul 2013)
2013-07-15 23:10:06 +02:00
Michael Liebmann
9a10987d06 keybind_setup: Rename item in locale
- fix to 1598b73e63


Origin commit data
------------------
Commit: 339b1b4030
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-07-15 (Mon, 15 Jul 2013)
2013-07-15 00:22:12 +02:00
Stefan Seyfried
2c2b4894cd fix broken native build
Origin commit data
------------------
Commit: 6f0bf5e1e3
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-07-14 (Sun, 14 Jul 2013)
2013-07-14 20:33:20 +02:00
J. Krieg
f63af64ac7 cables.xml: update Kabel BW (rearrangement channels, June 2013)
Origin commit data
------------------
Commit: cc728d299c
Author: J. Krieg <bellum07@googlemail.com>
Date: 2013-07-13 (Sat, 13 Jul 2013)
2013-07-13 23:03:06 +02:00
tomworld
1598b73e63 keybind_setup: add possibility to disable/enable some special keys
Origin commit data
------------------
Commit: ea66aaaf8f
Author: tomworld <atzeworld@msn.com>
Date: 2013-07-12 (Fri, 12 Jul 2013)

Origin message was:
------------------
- keybind_setup: add possibility to disable/enable some special keys
2013-07-12 15:50:30 +02:00
vanhofen
7e2940c2cd yweb: fix position and dimension of volume table
Origin commit data
------------------
Commit: c866bf0866
Author: vanhofen <vanhofen@gmx.de>
Date: 2013-07-07 (Sun, 07 Jul 2013)

Origin message was:
------------------
- yweb: fix position and dimension of volume table
2013-07-07 22:33:21 +02:00