Rev 1250 | Rev 5116 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
4430 | cbradney | 1 | /* |
2 | For general Scribus (>=1.3.2) copyright and licensing information please refer |
||
3 | to the COPYING file provided with the program. Following this notice may exist |
||
4 | a copyright and/or license notice that predates the release of Scribus 1.3.2 |
||
5 | for which a new license (GPL+exception) is in place. |
||
6 | */ |
||
1111 | tsoots | 7 | /*************************************************************************** |
8 | * Copyright (C) 2005 by Riku Leino * |
||
9 | * tsoots@gmail.com * |
||
10 | * * |
||
11 | * This program is free software; you can redistribute it and/or modify * |
||
12 | * it under the terms of the GNU General Public License as published by * |
||
13 | * the Free Software Foundation; either version 2 of the License, or * |
||
14 | * (at your option) any later version. * |
||
15 | * * |
||
16 | * This program is distributed in the hope that it will be useful, * |
||
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
||
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
||
19 | * GNU General Public License for more details. * |
||
20 | * * |
||
21 | * You should have received a copy of the GNU General Public License * |
||
22 | * along with this program; if not, write to the * |
||
23 | * Free Software Foundation, Inc., * |
||
24 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * |
||
25 | ***************************************************************************/ |
||
26 | |||
27 | #include "undoobject.h" |
||
28 | |||
29 | ulong UndoObject::nextId = 1; |
||
30 | |||
31 | |||
32 | UndoObject::UndoObject() |
||
33 | { |
||
34 | _id = nextId; |
||
35 | ++nextId; |
||
36 | uname = ""; |
||
1250 | tsoots | 37 | upixmap = NULL; |
1111 | tsoots | 38 | } |
39 | |||
1250 | tsoots | 40 | UndoObject::UndoObject(const QString &objectName, QPixmap *objectIcon) |
1111 | tsoots | 41 | { |
42 | _id = nextId; |
||
43 | ++nextId; |
||
44 | uname = objectName; |
||
1250 | tsoots | 45 | upixmap = objectIcon; |
1111 | tsoots | 46 | } |
47 | |||
48 | ulong UndoObject::getUId() |
||
49 | { |
||
50 | return _id; |
||
51 | } |
||
52 | |||
53 | QString UndoObject::getUName() |
||
54 | { |
||
55 | return uname; |
||
56 | } |
||
57 | |||
58 | void UndoObject::setUName(QString newUName) |
||
59 | { |
||
60 | uname = newUName; |
||
61 | } |
||
1250 | tsoots | 62 | |
63 | QPixmap* UndoObject::getUPixmap() |
||
64 | { |
||
65 | return upixmap; |
||
66 | } |
||
67 | |||
68 | void UndoObject::setUPixmap(QPixmap *newUPixmap) |
||
69 | { |
||
70 | upixmap = newUPixmap; |
||
71 | } |