Formatted all .cc and .h code in rtengine, rtexif and rtgui using astyle
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* 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
|
||||
@@ -22,13 +22,15 @@
|
||||
|
||||
using namespace rtengine;
|
||||
|
||||
RecentBrowser::RecentBrowser () : listener (NULL) {
|
||||
RecentBrowser::RecentBrowser () : listener (NULL)
|
||||
{
|
||||
|
||||
recentDirs = Gtk::manage (new MyComboBoxText ());
|
||||
|
||||
Gtk::Frame* frame = Gtk::manage (new Gtk::Frame (M("MAIN_FRAME_RECENT")));
|
||||
frame->add (*recentDirs);
|
||||
for(size_t i=0;i<options.recentFolders.size();i++) {
|
||||
|
||||
for(size_t i = 0; i < options.recentFolders.size(); i++) {
|
||||
recentDirs->append_text (options.recentFolders[i]);
|
||||
}
|
||||
|
||||
@@ -39,31 +41,39 @@ RecentBrowser::RecentBrowser () : listener (NULL) {
|
||||
show_all ();
|
||||
}
|
||||
|
||||
void RecentBrowser::selectionChanged () {
|
||||
void RecentBrowser::selectionChanged ()
|
||||
{
|
||||
|
||||
Glib::ustring sel = recentDirs->get_active_text ();
|
||||
if (sel!="" && listener)
|
||||
|
||||
if (sel != "" && listener) {
|
||||
listener->selectDir (sel);
|
||||
}
|
||||
}
|
||||
|
||||
void RecentBrowser::dirSelected (const Glib::ustring& dirname, const Glib::ustring& openfile) {
|
||||
|
||||
void RecentBrowser::dirSelected (const Glib::ustring& dirname, const Glib::ustring& openfile)
|
||||
{
|
||||
|
||||
size_t numFolders = options.recentFolders.size();
|
||||
if(numFolders>0) { // search entry and move to top if it exists
|
||||
|
||||
if(numFolders > 0) { // search entry and move to top if it exists
|
||||
size_t i;
|
||||
for(i=0;i<numFolders;i++) {
|
||||
|
||||
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);
|
||||
|
||||
if(i > 0) {
|
||||
if(i < numFolders) {
|
||||
options.recentFolders.erase(options.recentFolders.begin() + i);
|
||||
}
|
||||
options.recentFolders.insert(options.recentFolders.begin(),dirname);
|
||||
|
||||
options.recentFolders.insert(options.recentFolders.begin(), dirname);
|
||||
}
|
||||
} else {
|
||||
options.recentFolders.insert(options.recentFolders.begin(),dirname);
|
||||
options.recentFolders.insert(options.recentFolders.begin(), dirname);
|
||||
}
|
||||
|
||||
conn.block (true);
|
||||
|
Reference in New Issue
Block a user