Fix stopping of TransferKIO-Plugin
[kdenetwork.git] / kget / mainwindow.h
bloba91c18d99e6436b5eff69b81146e80dc84e092fa
1 /* This file is part of the KDE project
3 Copyright (C) 2002 by Patrick Charbonnier <pch@freeshell.org>
4 Based On Caitoo v.0.7.3 (c) 1998 - 2000, Matej Koss
5 Copyright (C) 2006 Dario Massarin <nekkar@libero.it>
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
13 #ifndef MAINWINDOW_H
14 #define MAINWINDOW_H
16 #include <ktoggleaction.h>
17 #include <kxmlguiwindow.h>
18 #include <kurl.h>
20 #include "ui/tray.h"
22 class ViewsContainer;
23 class DropTarget;
24 class DBusModelObserver;
26 /**
27 * The main window of KGet.
29 * Can be collapsed or expanded.
31 class MainWindow : public KXmlGuiWindow
33 Q_OBJECT
34 public:
35 explicit MainWindow(bool showMainwindow = true, bool startWithoutAnimation = false, QWidget *parent = 0);
36 ~MainWindow();
38 // from the DBUS interface
39 virtual void addTransfers(const QString& src, const QString& destDir = QString(),
40 bool start = false);
41 virtual bool dropTargetVisible() const;
42 virtual void setDropTargetVisible( bool setVisible );
43 virtual void setOfflineMode( bool online );
44 virtual bool offlineMode() const;
45 virtual QVariantMap transfers() const;
46 virtual int transfersSpeed() const;
47 virtual void setSystemTrayDownloading(bool running);
49 KSystemTrayIcon *systemTray() const { return m_dock;};
51 public slots:
52 void slotQuit();
54 protected:
55 // ignore/accept quit events
56 virtual void closeEvent( QCloseEvent * );
58 // drag and drop
59 virtual void dragEnterEvent(QDragEnterEvent *);
60 virtual void dropEvent(QDropEvent *);
62 // set sensitive initial size
63 virtual QSize sizeHint() const;
65 private slots:
66 // slots connected to actions
67 void slotToggleDropTarget();
68 void slotNewTransfer();
69 void slotImportTransfers();
70 void slotExportTransfers();
71 void slotPreferences();
72 void slotDeleteGroup();
73 void slotRenameGroup();
74 void slotStartDownload();
75 void slotStopDownload();
76 void slotConfigureNotifications();
77 void slotConfigureKeys();
78 void slotConfigureToolbars();
79 void slotToggleAutoPaste();
80 void slotTrayKonquerorIntegration(bool);
81 void slotKonquerorIntegration( bool );
82 void slotShowMenubar();
84 // transfers slots
85 void slotStopAllDownload();
86 void slotStopSelectedDownload();
87 void slotStartAllDownload();
88 void slotStartSelectedDownload();
89 void slotDeleteSelected();
90 void slotTransfersOpenDest();
91 void slotTransfersShowDetails();
92 void slotTransfersCopySourceUrl();
94 // misc slots
95 void slotDelayedInit();
96 void slotSaveMyself();
97 void slotNewToolbarConfig();
98 void slotNewConfig();
99 void slotCheckClipboard();
101 private:
102 // one-time functions
103 void setupActions();
105 // internal widgets
106 ViewsContainer * m_viewsContainer;
107 // dbus modelObserver to export the transfer percents
108 DBusModelObserver *m_dbusModelObserver;
110 // separated widgets
111 DropTarget * m_drop;
112 Tray * m_dock;
114 // actions
115 KToggleAction * m_autoPasteAction;
116 KToggleAction * m_menubarAction;
117 KToggleAction * m_konquerorIntegration;
119 // for autopaste function
120 QString lastClipboard;
121 // timer for checking clipboard - autopaste function
122 QTimer *clipboardTimer;
124 bool m_startWithoutAnimation;
127 #endif