mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 18:56:34 +01:00
Remove non-working Work Offline option
This commit is contained in:
parent
dd5c5db142
commit
96cc2d41e2
@ -783,15 +783,6 @@ void BrowserWindow::toggleFullScreen()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BrowserWindow::toggleOfflineMode()
|
|
||||||
{
|
|
||||||
bool enable = !qzSettings->workOffline;
|
|
||||||
|
|
||||||
Settings().setValue("Web-Browser-Settings/WorkOffline", enable);
|
|
||||||
|
|
||||||
qzSettings->workOffline = enable;
|
|
||||||
}
|
|
||||||
|
|
||||||
void BrowserWindow::enterHtmlFullScreen()
|
void BrowserWindow::enterHtmlFullScreen()
|
||||||
{
|
{
|
||||||
showFullScreen();
|
showFullScreen();
|
||||||
|
@ -131,7 +131,6 @@ public slots:
|
|||||||
void toggleTabsOnTop(bool enable);
|
void toggleTabsOnTop(bool enable);
|
||||||
|
|
||||||
void toggleFullScreen();
|
void toggleFullScreen();
|
||||||
void toggleOfflineMode();
|
|
||||||
void enterHtmlFullScreen();
|
void enterHtmlFullScreen();
|
||||||
|
|
||||||
void loadActionUrl(QObject* obj = 0);
|
void loadActionUrl(QObject* obj = 0);
|
||||||
|
@ -97,7 +97,6 @@ void MainMenu::initSuperMenu(QMenu* superMenu) const
|
|||||||
superMenu->addAction(m_actions[QSL("Help/InfoAboutApp")]);
|
superMenu->addAction(m_actions[QSL("Help/InfoAboutApp")]);
|
||||||
superMenu->addAction(m_actions[QSL("Help/ConfigInfo")]);
|
superMenu->addAction(m_actions[QSL("Help/ConfigInfo")]);
|
||||||
superMenu->addAction(m_actions[QSL("Help/ReportIssue")]);
|
superMenu->addAction(m_actions[QSL("Help/ReportIssue")]);
|
||||||
superMenu->addAction(m_actions[QSL("File/WorkOffline")]);
|
|
||||||
superMenu->addSeparator();
|
superMenu->addSeparator();
|
||||||
superMenu->addAction(m_actions[QSL("Standard/Quit")]);
|
superMenu->addAction(m_actions[QSL("Standard/Quit")]);
|
||||||
|
|
||||||
@ -174,11 +173,6 @@ void MainMenu::printPage()
|
|||||||
callSlot("printPage");
|
callSlot("printPage");
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainMenu::toggleOfflineMode()
|
|
||||||
{
|
|
||||||
callSlot("toggleOfflineMode");
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainMenu::editUndo()
|
void MainMenu::editUndo()
|
||||||
{
|
{
|
||||||
if (m_window) {
|
if (m_window) {
|
||||||
@ -361,7 +355,6 @@ void MainMenu::aboutToShowFileMenu()
|
|||||||
#ifndef Q_OS_MAC
|
#ifndef Q_OS_MAC
|
||||||
m_actions[QSL("File/CloseWindow")]->setEnabled(mApp->windowCount() > 1);
|
m_actions[QSL("File/CloseWindow")]->setEnabled(mApp->windowCount() > 1);
|
||||||
#endif
|
#endif
|
||||||
m_actions[QSL("File/WorkOffline")]->setChecked(qzSettings->workOffline);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainMenu::aboutToHideFileMenu()
|
void MainMenu::aboutToHideFileMenu()
|
||||||
@ -524,8 +517,6 @@ void MainMenu::init()
|
|||||||
ADD_ACTION("File/SendLink", m_menuFile, QIcon::fromTheme(QSL("mail-message-new")), tr("Send Link..."), SLOT(sendLink()), "");
|
ADD_ACTION("File/SendLink", m_menuFile, QIcon::fromTheme(QSL("mail-message-new")), tr("Send Link..."), SLOT(sendLink()), "");
|
||||||
ADD_ACTION("File/Print", m_menuFile, QIcon::fromTheme(QSL("document-print")), tr("&Print..."), SLOT(printPage()), "Ctrl+P");
|
ADD_ACTION("File/Print", m_menuFile, QIcon::fromTheme(QSL("document-print")), tr("&Print..."), SLOT(printPage()), "Ctrl+P");
|
||||||
m_menuFile->addSeparator();
|
m_menuFile->addSeparator();
|
||||||
ADD_CHECKABLE_ACTION("File/WorkOffline", m_menuFile, QIcon(), tr("Work &Offline"), SLOT(toggleOfflineMode()), "");
|
|
||||||
m_menuFile->addSeparator();
|
|
||||||
m_menuFile->addAction(m_actions[QSL("Standard/Quit")]);
|
m_menuFile->addAction(m_actions[QSL("Standard/Quit")]);
|
||||||
|
|
||||||
// Edit menu
|
// Edit menu
|
||||||
|
@ -58,7 +58,6 @@ private slots:
|
|||||||
void openLocation();
|
void openLocation();
|
||||||
void openFile();
|
void openFile();
|
||||||
void closeWindow();
|
void closeWindow();
|
||||||
void toggleOfflineMode();
|
|
||||||
void sendLink();
|
void sendLink();
|
||||||
void printPage();
|
void printPage();
|
||||||
|
|
||||||
|
@ -53,8 +53,6 @@ void QzSettings::loadSettings()
|
|||||||
allowJsHideMenuBar = settings.value("allowJavaScriptHideMenuBar", true).toBool();
|
allowJsHideMenuBar = settings.value("allowJavaScriptHideMenuBar", true).toBool();
|
||||||
allowJsHideStatusBar = settings.value("allowJavaScriptHideStatusBar", true).toBool();
|
allowJsHideStatusBar = settings.value("allowJavaScriptHideStatusBar", true).toBool();
|
||||||
allowJsHideToolBar = settings.value("allowJavaScriptHideToolBar", true).toBool();
|
allowJsHideToolBar = settings.value("allowJavaScriptHideToolBar", true).toBool();
|
||||||
enableFormsUndoRedo = settings.value("enableFormsUndoRedo", true).toBool();
|
|
||||||
workOffline = settings.value("WorkOffline", false).toBool();
|
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
|
||||||
settings.beginGroup("Browser-Tabs-Settings");
|
settings.beginGroup("Browser-Tabs-Settings");
|
||||||
|
@ -53,8 +53,6 @@ public:
|
|||||||
bool allowJsHideMenuBar;
|
bool allowJsHideMenuBar;
|
||||||
bool allowJsHideStatusBar;
|
bool allowJsHideStatusBar;
|
||||||
bool allowJsHideToolBar;
|
bool allowJsHideToolBar;
|
||||||
bool enableFormsUndoRedo;
|
|
||||||
bool workOffline;
|
|
||||||
|
|
||||||
QStringList autoOpenProtocols;
|
QStringList autoOpenProtocols;
|
||||||
QStringList blockedProtocols;
|
QStringList blockedProtocols;
|
||||||
|
Loading…
Reference in New Issue
Block a user