mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
7e9d6e2829
Fixed the show / hide dialog shortcuts to take the splitter into consideration, So, here's the deal. We have a few QSplitters that takes care of helping us with the size of a few widgets, they are ok, and we should continue using them to manage the visibility of them too. But the way that we did before was to widget->hide(); something, and if you hided something using the splitter, by holding it's handle and collapsing the widget, then you used the 'ctrl+number' shortcut to show it, it whould only show a gray panel. This patch makes everything behave using the splitters. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
113 lines
2.3 KiB
C++
113 lines
2.3 KiB
C++
/*
|
|
* mainwindow.h
|
|
*
|
|
* header file for the main window of Subsurface
|
|
*
|
|
*/
|
|
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
#include <QAction>
|
|
|
|
struct DiveList;
|
|
class QSortFilterProxyModel;
|
|
class DiveTripModel;
|
|
|
|
|
|
namespace Ui
|
|
{
|
|
class MainWindow;
|
|
}
|
|
|
|
class DiveInfo;
|
|
class DiveNotes;
|
|
class Stats;
|
|
class Equipment;
|
|
class QItemSelection;
|
|
class DiveListView;
|
|
class GlobeGPS;
|
|
class MainTab;
|
|
class ProfileGraphicsView;
|
|
class QTextBrowser;
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum {COLLAPSED, EXPANDED};
|
|
|
|
MainWindow();
|
|
ProfileGraphicsView *graphics();
|
|
MainTab *information();
|
|
DiveListView *dive_list();
|
|
GlobeGPS *globe();
|
|
void showError(QString message);
|
|
|
|
private Q_SLOTS:
|
|
|
|
|
|
/* file menu action */
|
|
void on_actionNew_triggered();
|
|
void on_actionOpen_triggered();
|
|
void on_actionSave_triggered();
|
|
void on_actionSaveAs_triggered();
|
|
void on_actionClose_triggered();
|
|
void on_actionImport_triggered();
|
|
void on_actionExportUDDF_triggered();
|
|
void on_actionPrint_triggered();
|
|
void on_actionPreferences_triggered();
|
|
void on_actionQuit_triggered();
|
|
|
|
/* log menu actions */
|
|
void on_actionDownloadDC_triggered();
|
|
void on_actionDownloadWeb_triggered();
|
|
void on_actionEditDeviceNames_triggered();
|
|
void on_actionAddDive_triggered();
|
|
void on_actionRenumber_triggered();
|
|
void on_actionAutoGroup_triggered();
|
|
void on_actionToggleZoom_triggered();
|
|
void on_actionYearlyStatistics_triggered();
|
|
|
|
/* view menu actions */
|
|
void on_actionViewList_triggered();
|
|
void on_actionViewProfile_triggered();
|
|
void on_actionViewInfo_triggered();
|
|
void on_actionViewGlobe_triggered();
|
|
void on_actionViewAll_triggered();
|
|
void on_actionPreviousDC_triggered();
|
|
void on_actionNextDC_triggered();
|
|
|
|
/* other menu actions */
|
|
void on_actionSelectEvents_triggered();
|
|
void on_actionInputPlan_triggered();
|
|
void on_actionAboutSubsurface_triggered();
|
|
void on_actionUserManual_triggered();
|
|
|
|
void current_dive_changed(int divenr);
|
|
void initialUiSetup();
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent *);
|
|
|
|
public Q_SLOTS:
|
|
void readSettings();
|
|
void refreshDisplay();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
QAction *actionNextDive;
|
|
QAction *actionPreviousDive;
|
|
QTextBrowser *helpView;
|
|
QString filter();
|
|
bool askSaveChanges();
|
|
void writeSettings();
|
|
void redrawProfile();
|
|
void file_save();
|
|
void file_save_as();
|
|
void setupSplitters();
|
|
};
|
|
|
|
MainWindow *mainWindow();
|
|
|
|
#endif
|