OpenASIP  2.0
FitHeightCmd.cc
Go to the documentation of this file.
1 /*
2  Copyright (c) 2002-2009 Tampere University.
3 
4  This file is part of TTA-Based Codesign Environment (TCE).
5 
6  Permission is hereby granted, free of charge, to any person obtaining a
7  copy of this software and associated documentation files (the "Software"),
8  to deal in the Software without restriction, including without limitation
9  the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  and/or sell copies of the Software, and to permit persons to whom the
11  Software is furnished to do so, subject to the following conditions:
12 
13  The above copyright notice and this permission notice shall be included in
14  all copies or substantial portions of the Software.
15 
16  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  DEALINGS IN THE SOFTWARE.
23  */
24 /**
25  * @file FitHeightCmd.cc
26  *
27  * Definition of FitHeightCmd class.
28  *
29  * @author Veli-Pekka Jääskeläinen 2004 (vjaaskel-no.spam-cs.tut.fi)
30  */
31 
32 #include <wx/gdicmn.h>
33 #include <wx/docview.h>
34 
35 #include "FitHeightCmd.hh"
36 #include "MDFView.hh"
37 #include "MachineCanvas.hh"
38 #include "ProDeConstants.hh"
39 #include "ProDe.hh"
40 #include "CanvasConstants.hh"
41 
42 using std::string;
43 
44 /**
45  * The Constructor.
46  */
48  EditorCommand(ProDeConstants::CMD_NAME_ZOOM_FIT_HEI) {
49 
50 }
51 
52 
53 /**
54  * The Destructor.
55  */
57 }
58 
59 
60 
61 /**
62  * Executes the command.
63  *
64  * @return true, if the command was succesfully executed, false otherwise.
65  */
66 bool
68 
69  MDFView* mView = dynamic_cast<MDFView*>(view());
70  MachineCanvas* canvas = mView->canvas();
71 
72  wxSize figureSize = canvas->getFigureSize();
73  wxSize cSize = canvas->GetSize();
74 
75  // Decrease zoom factor from maximum until the figure height is smaller
76  // than the window height.
77  double factor = CanvasConstants::MAX_ZOOM_FACTOR;
78  while (cSize.GetHeight() < factor*figureSize.GetHeight()) {
79  factor = factor - CanvasConstants::AUTOZOOM_STEP;
80  }
81 
82  canvas->setZoomFactor(factor);
83  return true;
84 }
85 
86 
87 /**
88  * Returns id of this command.
89  *
90  * @return ID for this command to be used in menus and toolbars.
91  */
92 int
95 }
96 
97 
98 /**
99  * Creates and returns a new instance of this command.
100  *
101  * @return Newly created instance of this command.
102  */
105  return new FitHeightCmd();
106 }
107 
108 
109 /**
110  * Returns path to the command's icon file.
111  *
112  * @return Full path to the command's icon file.
113  */
114 string
117 }
118 
119 /**
120  * Returns short version of the command name.
121  *
122  * @return Short name of the command to be used in the toolbar.
123  */
124 string
127 }
128 
129 
130 /**
131  * Returns true when the command is executable, false when not.
132  *
133  * This command is executable when a document is open.
134  *
135  * @return True, if a document is open.
136  */
137 bool
139  wxDocManager* manager = wxGetApp().docManager();
140  if (manager->GetCurrentView() != NULL) {
141  return true;
142  }
143  return false;
144 }
MachineCanvas::getFigureSize
wxSize getFigureSize() const
Definition: MachineCanvas.cc:294
MachineCanvas
Definition: MachineCanvas.hh:64
ProDe.hh
FitHeightCmd::create
virtual FitHeightCmd * create() const
Definition: FitHeightCmd.cc:104
CanvasConstants.hh
MachineCanvas::setZoomFactor
void setZoomFactor(double factor)
Definition: MachineCanvas.cc:188
MDFView::canvas
MachineCanvas * canvas() const
Definition: MDFView.cc:229
ProDeConstants::CMD_SNAME_ZOOM_FIT_HEI
static const std::string CMD_SNAME_ZOOM_FIT_HEI
Command name for the "Fit Height" command.
Definition: ProDeConstants.hh:276
FitHeightCmd.hh
FitHeightCmd::id
virtual int id() const
Definition: FitHeightCmd.cc:93
CanvasConstants::MAX_ZOOM_FACTOR
static const double MAX_ZOOM_FACTOR
Maximum zoom factor.
Definition: CanvasConstants.hh:47
ProDeConstants::COMMAND_ZOOM_FIT_HEI
@ COMMAND_ZOOM_FIT_HEI
Definition: ProDeConstants.hh:450
FitHeightCmd::icon
virtual std::string icon() const
Definition: FitHeightCmd.cc:115
FitHeightCmd::shortName
virtual std::string shortName() const
Definition: FitHeightCmd.cc:125
FitHeightCmd::~FitHeightCmd
virtual ~FitHeightCmd()
Definition: FitHeightCmd.cc:56
EditorCommand::view
wxView * view() const
Definition: EditorCommand.cc:76
MachineCanvas.hh
ProDeConstants::CMD_ICON_ZOOM_FIT_HEI
static const std::string CMD_ICON_ZOOM_FIT_HEI
Icon location for the "Fit Height" command.
Definition: ProDeConstants.hh:334
FitHeightCmd::FitHeightCmd
FitHeightCmd()
Definition: FitHeightCmd.cc:47
ProDeConstants.hh
FitHeightCmd::isEnabled
virtual bool isEnabled()
Definition: FitHeightCmd.cc:138
FitHeightCmd::Do
virtual bool Do()
Definition: FitHeightCmd.cc:67
MDFView.hh
CanvasConstants::AUTOZOOM_STEP
static const double AUTOZOOM_STEP
More precise step for automatic canvas resizing.
Definition: CanvasConstants.hh:51
EditorCommand
Definition: EditorCommand.hh:46
ProDeConstants
Definition: ProDeConstants.hh:43
FitHeightCmd
Definition: FitHeightCmd.hh:40
MDFView
Definition: MDFView.hh:59