diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-01 17:05:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-01 17:27:14 +0300 |
commit | 4ecea7806d45ca40b370b13da6fe4781ef04367d (patch) | |
tree | 22eef831511daf36cc0bd7e497fae972e0371735 /src/gui/setup_other.cpp | |
parent | 40efe9ac2ad7b080f3b817b7fc909fcc2b333093 (diff) | |
download | plus-4ecea7806d45ca40b370b13da6fe4781ef04367d.tar.gz plus-4ecea7806d45ca40b370b13da6fe4781ef04367d.tar.bz2 plus-4ecea7806d45ca40b370b13da6fe4781ef04367d.tar.xz plus-4ecea7806d45ca40b370b13da6fe4781ef04367d.zip |
add option to override detected screen density.
Diffstat (limited to 'src/gui/setup_other.cpp')
-rw-r--r-- | src/gui/setup_other.cpp | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/gui/setup_other.cpp b/src/gui/setup_other.cpp index c4ce2a500..bc4bf8f24 100644 --- a/src/gui/setup_other.cpp +++ b/src/gui/setup_other.cpp @@ -58,10 +58,24 @@ static const char *const proxyTypeList[] = N_("SOCKS5 hostname") }; +static const int densityListSize = 7; + +static const char *const densityList[] = +{ + N_("default"), + N_("low"), + N_("medium"), + N_("tv"), + N_("high"), + N_("xhigh"), + N_("xxhigh") +}; + Setup_Other::Setup_Other(const Widget2 *const widget) : SetupTabScroll(widget), mProxyTypeList(new NamesModel), - mShortcutsList(new NamesModel) + mShortcutsList(new NamesModel), + mDensityList(new NamesModel) { setName(_("Misc")); @@ -275,6 +289,10 @@ Setup_Other::Setup_Other(const Widget2 *const widget) : new SetupItemCheckBox(_("Show background"), "", "showBackground", this, "showBackgroundEvent"); + mDensityList->fillFromArray(&densityList[0], densityListSize); + new SetupItemDropDown(_("Screen density override"), "", + "screenDensity", this, "screenDensityEvent", mDensityList, 100); + setDimension(gcn::Rectangle(0, 0, 550, 350)); } |