summaryrefslogtreecommitdiff
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-11-10 15:20:49 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-11-10 15:20:49 +0100
commit64cac4862842c7efa2dc7591ab5b672255e49e4c (patch)
treec0ea60adb6761b738315a04d82008c8c15f15f27 /src/mainwindow.h
parentfixing new mainWindow() behaviour, porting functions calling it (diff)
downloadrekonq-64cac4862842c7efa2dc7591ab5b672255e49e4c.tar.xz
(BIG commit) API change
I fixed rekonq API removing all slotName call switching to a proper getter call (so, name() functions)
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 02302aca..08a99b24 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -82,7 +82,7 @@ private:
SidePanel *sidePanel();
public slots:
- void slotUpdateBrowser();
+ void updateBrowser();
void homePage();
/**
@@ -115,45 +115,45 @@ protected:
private slots:
void postLaunch();
- void slotUpdateConfiguration();
- void slotBrowserLoading(bool);
- void slotUpdateActions();
- void slotUpdateWindowTitle(const QString &title = QString());
+ void updateConfiguration();
+ void browserLoading(bool);
+ void updateActions();
+ void updateWindowTitle(const QString &title = QString());
// history related
- void slotOpenPrevious();
- void slotOpenNext();
+ void openPrevious();
+ void openNext();
// Find Action slots
- void slotFind(const QString &);
- void slotFindNext();
- void slotFindPrevious();
+ void find(const QString &);
+ void findNext();
+ void findPrevious();
// Zoom slots
- void slotViewTextBigger();
- void slotViewTextNormal();
- void slotViewTextSmaller();
+ void viewTextBigger();
+ void viewTextNormal();
+ void viewTextSmaller();
// File Menu slots
- void slotOpenLocation();
- void slotFileOpen();
- void slotFileSaveAs();
+ void openLocation();
+ void fileOpen();
+ void fileSaveAs();
- void slotViewPageSource();
- void slotViewFullScreen(bool enable);
+ void viewPageSource();
+ void viewFullScreen(bool enable);
// Tools Menu slots
- void slotToggleInspector(bool enable);
- void slotPrivateBrowsing(bool enable);
+ void toggleInspector(bool enable);
+ void privateBrowsing(bool enable);
// Settings Menu slot
- void slotPreferences();
+ void preferences();
// clear private data
void clearPrivateData();
- void slotAboutToShowBackMenu();
- void slotOpenActionUrl(QAction *action);
+ void aboutToShowBackMenu();
+ void openActionUrl(QAction *action);
private:
MainView *m_view;