You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
159 lines
4.1 KiB
159 lines
4.1 KiB
/*
|
|
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 <tqwidget.h>
|
|
#include <tqpixmap.h>
|
|
#include <tqptrlist.h>
|
|
|
|
#include <kmainwindow.h>
|
|
#include <kiconloader.h>
|
|
#include <kmenubar.h>
|
|
#include <kstatusbar.h>
|
|
#include <ktoolbar.h>
|
|
#include <kaccel.h>
|
|
#include <kurl.h>
|
|
#include <kaction.h>
|
|
|
|
#include "knew.h"
|
|
#include "kicon.h"
|
|
#include "kiconconfig.h"
|
|
#include "kicongrid.h"
|
|
#include "kresize.h"
|
|
#include "properties.h"
|
|
|
|
class KIconEdit;
|
|
class KCommandHistory;
|
|
typedef TQPtrList<KIconEdit> WindowList;
|
|
|
|
class TQWhatsThis;
|
|
class TQToolButton;
|
|
class TQLabel;
|
|
class PaletteToolBar;
|
|
|
|
/**
|
|
* KIconEdit
|
|
* @short KIconEdit
|
|
* @author Thomas Tanghus <tanghus@kde.org>
|
|
* @version 0.4
|
|
*/
|
|
class KIconEdit : public KMainWindow
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
KIconEdit( KURL url = KURL(), const char *name = "kiconedit");
|
|
KIconEdit( const TQImage image, const char *name = "kiconedit");
|
|
~KIconEdit();
|
|
|
|
virtual TQSize sizeHint() const;
|
|
static WindowList windowList;
|
|
|
|
signals:
|
|
void newname(const TQString &);
|
|
|
|
public slots:
|
|
virtual void saveProperties(KConfig*);
|
|
virtual void readProperties(KConfig*);
|
|
void updateProperties();
|
|
|
|
protected slots:
|
|
void slotNewWin(const TQString & 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 TQString &);
|
|
void slotUpdateStatusName(const TQString &);
|
|
void slotUpdateStatusModified(bool);
|
|
void slotUpdateStatusScaling(int);
|
|
void slotUpdatePaste(bool);
|
|
void slotUpdateCopy(bool);
|
|
void slotOpenBlank(const TQSize);
|
|
void addRecent(const TQString &);
|
|
|
|
virtual void dragEnterEvent(TQDragEnterEvent* event);
|
|
virtual void dropEvent(TQDropEvent *e);
|
|
|
|
protected:
|
|
void init();
|
|
void setupActions();
|
|
bool setupStatusBar();
|
|
void writeConfig();
|
|
void updateAccels();
|
|
|
|
virtual bool queryClose();
|
|
virtual TQWidget *createContainer( TQWidget*, int, const TQDomElement&, int& );
|
|
|
|
KCommandHistory* history;
|
|
PaletteToolBar *m_paletteToolBar;
|
|
KStatusBar *statusbar;
|
|
KIconEditGrid *grid;
|
|
KGridView *gridview;
|
|
KIconEditIcon *icon;
|
|
TQImage img;
|
|
TQString m_name;
|
|
|
|
KAction *m_actCopy, *m_actPaste, *m_actCut, *m_actPasteNew;
|
|
KAction *m_actZoomIn, *m_actZoomOut;
|
|
KRecentFilesAction *m_actRecent;
|
|
};
|
|
|
|
#endif //__KICONEDIT_H__
|