there is no moc file generated for this class
[kdegraphics.git] / kolourpaint / environments / commands / kpCommandEnvironment.cpp
blobe59ddb963ad03d9d8af75a949829188444257369
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 #include <kpCommandEnvironment.h>
31 #include <kpColorToolBar.h>
32 #include <kpDocument.h>
33 #include <kpMainWindow.h>
34 #include <kpImageSelectionTransparency.h>
35 #include <kpTextStyle.h>
36 #include <kpTool.h>
39 struct kpCommandEnvironmentPrivate
43 kpCommandEnvironment::kpCommandEnvironment (kpMainWindow *mainWindow)
44 : kpEnvironmentBase (mainWindow),
45 d (new kpCommandEnvironmentPrivate ())
49 kpCommandEnvironment::~kpCommandEnvironment ()
51 delete d;
55 // public
56 void kpCommandEnvironment::setColor (int which, const kpColor &color) const
58 kpColorToolBar *toolBar = mainWindow ()->colorToolBar ();
59 Q_ASSERT (toolBar);
61 toolBar->setColor (which, color);
65 // public
66 void kpCommandEnvironment::somethingBelowTheCursorChanged () const
68 kpTool *tool = mainWindow ()->tool ();
69 Q_ASSERT (tool);
71 tool->somethingBelowTheCursorChanged ();
75 // public
76 kpImageSelectionTransparency kpCommandEnvironment::imageSelectionTransparency () const
78 return mainWindow ()->imageSelectionTransparency ();
81 // public
82 void kpCommandEnvironment::setImageSelectionTransparency (
83 const kpImageSelectionTransparency &transparency,
84 bool forceColorChange)
86 mainWindow ()->setImageSelectionTransparency (transparency, forceColorChange);
90 // public
91 kpTextStyle kpCommandEnvironment::textStyle () const
93 return mainWindow ()->textStyle ();
96 // public
97 void kpCommandEnvironment::setTextStyle (const kpTextStyle &textStyle)
99 mainWindow ()->setTextStyle (textStyle);
103 #include <kpCommandEnvironment.moc>