From 47d455dd55be855e4cc691c32f687f723d9247ee Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kiconedit/kiconedit.h | 157 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 kiconedit/kiconedit.h (limited to 'kiconedit/kiconedit.h') diff --git a/kiconedit/kiconedit.h b/kiconedit/kiconedit.h new file mode 100644 index 00000000..54227206 --- /dev/null +++ b/kiconedit/kiconedit.h @@ -0,0 +1,157 @@ +/* + kiconedit - a small graphics drawing program for creating KDE icons + Copyright (C) 1998 Thomas Tanghus (tanghus@kde.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. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#ifndef __KICONEDIT_H__ +#define __KICONEDIT_H__ + +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +#include "knew.h" +#include "kicon.h" +#include "kiconconfig.h" +#include "kicongrid.h" +#include "kresize.h" +#include "properties.h" + +class KIconEdit; +class KCommandHistory; +typedef QPtrList WindowList; + +class QWhatsThis; +class QToolButton; +class QLabel; +class PaletteToolBar; + +/** +* KIconEdit +* @short KIconEdit +* @author Thomas Tanghus +* @version 0.4 +*/ +class KIconEdit : public KMainWindow +{ + Q_OBJECT +public: + KIconEdit( KURL url = KURL(), const char *name = "kiconedit"); + KIconEdit( const QImage image, const char *name = "kiconedit"); + ~KIconEdit(); + + virtual QSize sizeHint() const; + static WindowList windowList; + +signals: + void newname(const QString &); + +public slots: + virtual void saveProperties(KConfig*); + virtual void readProperties(KConfig*); + void updateProperties(); + +protected slots: + void slotNewWin(const QString & url = 0); + void slotNew(); + void slotOpen(); + void slotClose(); + void slotSave(); + void slotSaveAs(); + void slotPrint(); + void slotZoomIn(); + void slotZoomOut(); + void slotZoom1(); + void slotZoom2(); + void slotZoom5(); + void slotZoom10(); + void slotCopy(); + void slotCut(); + void slotPaste(); + void slotClear(); + void slotSaved(); + void slotSelectAll(); + void slotOpenRecent(const KURL&); + void slotToolPointer(); + void slotToolFreehand(); + void slotToolRectangle(); + void slotToolFilledRectangle(); + void slotToolCircle(); + void slotToolFilledCircle(); + void slotToolEllipse(); + void slotToolFilledEllipse(); + void slotToolSpray(); + void slotToolFlood(); + void slotToolLine(); + void slotToolEraser(); + void slotToolSelectRect(); + void slotToolSelectCircle(); + void slotConfigureSettings(); + void slotConfigureKeys(); + void slotShowGrid(); + void slotUpdateZoom( int ); + void slotUpdateStatusColors(uint); + void slotUpdateStatusColors(uint, uint*); + void slotUpdateStatusPos(int, int); + void slotUpdateStatusSize(int, int); + void slotUpdateStatusMessage(const QString &); + void slotUpdateStatusName(const QString &); + void slotUpdateStatusModified(bool); + void slotUpdateStatusScaling(int); + void slotUpdatePaste(bool); + void slotUpdateCopy(bool); + void slotOpenBlank(const QSize); + void addRecent(const QString &); + + virtual void dragEnterEvent(QDragEnterEvent* event); + virtual void dropEvent(QDropEvent *e); + +protected: + void init(); + void setupActions(); + bool setupStatusBar(); + void writeConfig(); + void updateAccels(); + + virtual bool queryClose(); + virtual QWidget *createContainer( QWidget*, int, const QDomElement&, int& ); + + KCommandHistory* history; + PaletteToolBar *m_paletteToolBar; + KStatusBar *statusbar; + KIconEditGrid *grid; + KGridView *gridview; + KIconEditIcon *icon; + QImage img; + QString m_name; + + KAction *m_actCopy, *m_actPaste, *m_actCut, *m_actPasteNew; + KAction *m_actZoomIn, *m_actZoomOut; + KRecentFilesAction *m_actRecent; +}; + +#endif //__KICONEDIT_H__ -- cgit v1.2.1