Collection of CSS and GUI improvements, cleanup of main CSS theme, introduction of highlight for enabled module. Primary change is the modification of the module titles to better distinguish modules that are on or off. The text of a disabled module is now less bright, the corresponding icon is a slightly smaller version of the power icon. When activating the module, the text turns brighter and the icon slightly bigger and also brighter. Thanks to @TechXavAL for the icon work. Secondary changes are related to the margins around several GUI elements, padding within elements and some accompanying borders. These changes hopefully make it easier to distinguish the various (sometimes crowded) GUI elements of modules. The panels have gotten a slightly 'outset' look. Nested panels have a changed look where deeper nesting increases the background brightness slightly, instead of darkening it (old behaviour). This is done without a strong decrease in contrast. The old theme is available as a legacy option. Due to hardcoded GUI changes needed for the new theme, the legacy version is not a 100% exact replicate. The @TooWaBoo theme's may also be slightly affected.
92 lines
2.5 KiB
C++
92 lines
2.5 KiB
C++
/*
|
|
* This file is part of RawTherapee.
|
|
*
|
|
* Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
|
|
*
|
|
* RawTherapee is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* RawTherapee is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with RawTherapee. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
#include "recentbrowser.h"
|
|
#include "multilangmgr.h"
|
|
#include "options.h"
|
|
|
|
using namespace rtengine;
|
|
|
|
RecentBrowser::RecentBrowser ()
|
|
{
|
|
|
|
recentDirs = Gtk::manage (new MyComboBoxText ());
|
|
|
|
Gtk::Frame* frame = Gtk::manage (new Gtk::Frame (M("MAIN_FRAME_RECENT")));
|
|
frame->set_label_align(0.025, 0.5);
|
|
frame->add (*recentDirs);
|
|
|
|
for(size_t i = 0; i < options.recentFolders.size(); i++) {
|
|
recentDirs->append (options.recentFolders[i]);
|
|
}
|
|
|
|
pack_start (*frame, Gtk::PACK_SHRINK, 4);
|
|
|
|
conn = recentDirs->signal_changed().connect(sigc::mem_fun(*this, &RecentBrowser::selectionChanged));
|
|
|
|
show_all ();
|
|
}
|
|
|
|
void RecentBrowser::selectionChanged ()
|
|
{
|
|
|
|
Glib::ustring sel = recentDirs->get_active_text ();
|
|
|
|
if (!sel.empty() && selectDir) {
|
|
selectDir (sel);
|
|
}
|
|
}
|
|
|
|
void RecentBrowser::dirSelected (const Glib::ustring& dirname, const Glib::ustring& openfile)
|
|
{
|
|
|
|
ssize_t numFolders = options.recentFolders.size();
|
|
ssize_t i = -1;
|
|
|
|
if(numFolders > 0) { // search entry and move to top if it exists
|
|
for(i = 0; i < numFolders; ++i) {
|
|
if(options.recentFolders[i] == dirname) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(i > 0) {
|
|
if(i < numFolders) {
|
|
options.recentFolders.erase(options.recentFolders.begin() + i);
|
|
}
|
|
|
|
options.recentFolders.insert(options.recentFolders.begin(), dirname);
|
|
}
|
|
} else {
|
|
options.recentFolders.insert(options.recentFolders.begin(), dirname);
|
|
}
|
|
|
|
conn.block (true);
|
|
|
|
if (i > 0) {
|
|
recentDirs->remove_text (i);
|
|
}
|
|
|
|
if(i != 0) {
|
|
recentDirs->prepend (dirname);
|
|
}
|
|
recentDirs->set_active (0);
|
|
|
|
conn.block (false);
|
|
}
|