summaryrefslogtreecommitdiffstats
path: root/src/k3bwelcomewidget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 02:15:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 02:15:56 +0000
commit50b48aec6ddd451a6d1709c0942477b503457663 (patch)
treea9ece53ec06fd0a2819de7a2a6de997193566626 /src/k3bwelcomewidget.h
downloadk3b-50b48aec6ddd451a6d1709c0942477b503457663.tar.gz
k3b-50b48aec6ddd451a6d1709c0942477b503457663.zip
Added abandoned KDE3 version of K3B
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1084400 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k3bwelcomewidget.h')
-rw-r--r--src/k3bwelcomewidget.h124
1 files changed, 124 insertions, 0 deletions
diff --git a/src/k3bwelcomewidget.h b/src/k3bwelcomewidget.h
new file mode 100644
index 0000000..df1945f
--- /dev/null
+++ b/src/k3bwelcomewidget.h
@@ -0,0 +1,124 @@
+/*
+ *
+ * $Id: k3bwelcomewidget.h 642063 2007-03-13 09:40:13Z trueg $
+ * Copyright (C) 2003 Sebastian Trueg <trueg@k3b.org>
+ *
+ * This file is part of the K3b project.
+ * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * See the file "COPYING" for the exact licensing terms.
+ */
+
+
+#ifndef _K3B_WELCOME_WIDGET_H_
+#define _K3B_WELCOME_WIDGET_H_
+
+#include <qscrollview.h>
+#include <qptrlist.h>
+#include <qmap.h>
+#include <qimage.h>
+
+#include <kurl.h>
+#include <kaction.h>
+
+class K3bMainWindow;
+class QDropEvent;
+class QDragEnterEvent;
+class K3bFlatButton;
+class QPaintEvent;
+class QResizeEvent;
+class QSimpleRichText;
+class KConfigBase;
+class QMouseEvent;
+class QShowEvent;
+
+
+class K3bWelcomeWidget : public QScrollView
+{
+ Q_OBJECT
+
+ public:
+ K3bWelcomeWidget( K3bMainWindow*, QWidget* parent = 0, const char* name = 0 );
+ ~K3bWelcomeWidget();
+
+ void loadConfig( KConfigBase* c );
+ void saveConfig( KConfigBase* c );
+
+ class Display;
+
+ public slots:
+ void slotMoreActions();
+
+ protected:
+ void resizeEvent( QResizeEvent* );
+ void showEvent( QShowEvent* );
+ void contentsMousePressEvent( QMouseEvent* e );
+
+ private:
+ void fixSize();
+
+ K3bMainWindow* m_mainWindow;
+ Display* main;
+};
+
+
+class K3bWelcomeWidget::Display : public QWidget
+{
+ Q_OBJECT
+
+ public:
+ Display( K3bWelcomeWidget* parent );
+ ~Display();
+
+ QSize minimumSizeHint() const;
+ QSizePolicy sizePolicy () const;
+ int heightForWidth ( int w ) const;
+
+ void addAction( KAction* );
+ void removeAction( KAction* );
+ void removeButton( K3bFlatButton* );
+ void rebuildGui();
+ void rebuildGui( const QPtrList<KAction>& );
+
+ signals:
+ void dropped( const KURL::List& );
+
+ protected:
+ void resizeEvent( QResizeEvent* );
+ void paintEvent( QPaintEvent* );
+ void dropEvent( QDropEvent* event );
+ void dragEnterEvent( QDragEnterEvent* event );
+
+ private slots:
+ void slotThemeChanged();
+
+ private:
+ void repositionButtons();
+ void updateBgPix();
+
+ QSimpleRichText* m_header;
+ QSimpleRichText* m_infoText;
+
+ QSize m_buttonSize;
+ int m_cols;
+ int m_rows;
+
+ QPtrList<KAction> m_actions;
+ QPtrList<K3bFlatButton> m_buttons;
+ QMap<K3bFlatButton*, KAction*> m_buttonMap;
+
+ K3bFlatButton* m_buttonMore;
+
+ bool m_infoTextVisible;
+
+ QPixmap m_bgPixmap;
+ QImage m_bgImage;
+
+ friend class K3bWelcomeWidget;
+};
+
+#endif