SVN_SILENT made messages (.desktop file)
[kdegraphics.git] / kolourpaint / commands / kpCommand.h
blob7824811fcbddd3ffc2708e6fd5a3d4b4326e32bc
2 /*
3 Copyright (c) 2003-2007 Clarence Dang <dang@kde.org>
4 All rights reserved.
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
8 are met:
10 1. Redistributions of source code must retain the above copyright
11 notice, this list of conditions and the following disclaimer.
12 2. Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #ifndef kpCommand_H
30 #define kpCommand_H
33 #include <kpCommandSize.h>
34 #undef environ // macro on win32
37 class QString;
39 class kpAbstractImageSelection;
40 class kpAbstractSelection;
41 class kpCommandEnvironment;
42 class kpDocument;
43 class kpMainWindow;
44 class kpTextSelection;
45 class kpViewManager;
48 class kpCommand : public kpCommandSize
50 public:
51 kpCommand (kpCommandEnvironment *environ);
52 virtual ~kpCommand ();
54 public:
55 virtual QString name () const = 0;
57 // Returns the estimated size in bytes.
59 // You only have to factor in the size of variables that change according
60 // to the amount of input e.g. pixmap size, text size. There is no need
61 // to include the size of O(1) variables unless they are huge.
63 // If in doubt, return the largest possible amount of memory that your
64 // command will take. This is better than making the user unexpectedly
65 // run out of memory.
67 // Implement this by measuring the size of all of your fields, using
68 // kpCommandSize.
69 virtual SizeType size () const = 0;
71 virtual void execute () = 0;
72 virtual void unexecute () = 0;
74 protected:
75 kpCommandEnvironment *environ () const;
77 // Commonly used accessors - simply forwards to environ().
78 kpDocument *document () const;
80 kpAbstractSelection *selection () const;
81 kpAbstractImageSelection *imageSelection () const;
82 kpTextSelection *textSelection () const;
84 kpViewManager *viewManager () const;
86 private:
87 kpCommandEnvironment * const m_environ;
91 #endif // kpCommand_H