108 lines
3.5 KiB
C++
Executable File
108 lines
3.5 KiB
C++
Executable File
/*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef _FILEPANEL_
|
|
#define _FILEPANEL_
|
|
|
|
#include <gtkmm.h>
|
|
#include "batchtoolpanelcoord.h"
|
|
#include "filecatalog.h"
|
|
#include "dirbrowser.h"
|
|
#include "fileselectionlistener.h"
|
|
#include "placesbrowser.h"
|
|
#include "recentbrowser.h"
|
|
#include "pparamschangelistener.h"
|
|
#include "history.h"
|
|
#include "filterpanel.h"
|
|
#include "exportpanel.h"
|
|
#include "progressconnector.h"
|
|
|
|
class RTWindow;
|
|
class FilePanel : public Gtk::HPaned,
|
|
public FileSelectionListener,
|
|
public PParamsChangeListener
|
|
{
|
|
|
|
protected:
|
|
//DirBrowser* dirBrowser;
|
|
PlacesBrowser* placesBrowser;
|
|
RecentBrowser* recentBrowser;
|
|
// FileCatalog* fileCatalog; // filecatalog is the file browser with the button bar above it
|
|
|
|
Inspector* inspectorPanel;
|
|
Gtk::VPaned* tpcPaned;
|
|
BatchToolPanelCoordinator* tpc;
|
|
History* history;
|
|
//FilterPanel* filterPanel;
|
|
RTWindow* parent;
|
|
Gtk::Notebook* rightNotebook;
|
|
sigc::connection rightNotebookSwitchConn;
|
|
|
|
struct pendingLoad {
|
|
bool complete;
|
|
ProgressConnector<rtengine::InitialImage*> *pc;
|
|
Thumbnail *thm;
|
|
};
|
|
MyMutex pendingLoadMutex;
|
|
std::vector<struct pendingLoad*> pendingLoads;
|
|
|
|
int error;
|
|
|
|
void on_NB_switch_page(GtkNotebookPage* page, guint page_num);
|
|
|
|
public:
|
|
FilePanel ();
|
|
~FilePanel ();
|
|
|
|
Gtk::Paned* placespaned;
|
|
Gtk::HPaned* dirpaned;
|
|
|
|
Gtk::HBox* rightBox;
|
|
|
|
DirBrowser* dirBrowser;
|
|
FilterPanel* filterPanel;
|
|
ExportPanel* exportPanel;
|
|
FileCatalog* fileCatalog;
|
|
Gtk::Paned *ribbonPane;
|
|
|
|
void setParent (RTWindow* p) { parent = p; }
|
|
void init (); // dont call it directly, the constructor calls it as idle source
|
|
void on_realize ();
|
|
void setAspect();
|
|
void open (const Glib::ustring& d); // open a file or a directory
|
|
void refreshEditedState (const std::set<Glib::ustring>& efiles) { fileCatalog->refreshEditedState (efiles); }
|
|
void loadingThumbs(Glib::ustring str, double rate);
|
|
|
|
// call this before closing RT: it saves file browser's related things into options
|
|
void saveOptions ();
|
|
|
|
// interface fileselectionlistener
|
|
bool fileSelected (Thumbnail* thm);
|
|
bool addBatchQueueJobs ( std::vector<BatchQueueEntry*> &entries );
|
|
|
|
void optionsChanged ();
|
|
bool imageLoaded( Thumbnail* thm, ProgressConnector<rtengine::InitialImage*> * );
|
|
|
|
bool handleShortcutKey (GdkEventKey* event);
|
|
void updateTPVScrollbar (bool hide);
|
|
void updateTabsUsesIcons (bool useIcons);
|
|
};
|
|
|
|
#endif
|
|
|