summaryrefslogtreecommitdiffstats
path: root/kicker/kicker/ui/addapplet.h
diff options
context:
space:
mode:
Diffstat (limited to 'kicker/kicker/ui/addapplet.h')
-rw-r--r--kicker/kicker/ui/addapplet.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/kicker/kicker/ui/addapplet.h b/kicker/kicker/ui/addapplet.h
new file mode 100644
index 000000000..d2ce50a00
--- /dev/null
+++ b/kicker/kicker/ui/addapplet.h
@@ -0,0 +1,82 @@
+/*****************************************************************
+
+Copyright (c) 2005 Marc Cramdal
+Copyright (c) 2005 Aaron Seigo <aseigo@kde.org>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+******************************************************************/
+
+#ifndef __addapplet_h__
+#define __addapplet_h__
+
+#include <qstringlist.h>
+#include <qpixmap.h>
+#include <qvaluelist.h>
+
+#include <klocale.h>
+#include <kdialogbase.h>
+
+#include "appletinfo.h"
+
+class ContainerArea;
+class AppletView;
+class AppletWidget;
+class QTimer;
+
+class AddAppletDialog : public KDialogBase
+{
+ Q_OBJECT
+
+ public:
+ AddAppletDialog(ContainerArea* cArea, QWidget* parent, const char* name);
+ void updateInsertionPoint();
+
+ protected:
+ void closeEvent(QCloseEvent*);
+ bool eventFilter(QObject *o, QEvent *e);
+
+ private slots:
+ void populateApplets();
+ void addCurrentApplet();
+ void addApplet(AppletWidget* applet);
+ void delayedSearch();
+ void search();
+ void filter(int i);
+ void selectApplet(AppletWidget* applet);
+ void resizeAppletView();
+
+ private:
+ bool appletMatchesSearch(const AppletWidget* w, const QString& s);
+
+ AppletView *m_mainWidget;
+ QWidget *m_appletBox;
+
+ AppletInfo::List m_applets;
+
+ QValueList<AppletWidget*> m_appletWidgetList;
+ AppletWidget* m_selectedApplet;
+
+ ContainerArea* m_containerArea;
+ AppletInfo::AppletType m_selectedType;
+ QPoint m_insertionPoint;
+ bool m_closing;
+ QTimer *m_searchDelay;
+};
+
+#endif