/usr/include/OverlayUnidraw/ovcmds.h is in ivtools-dev 1.2.11a1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 | /*
* Copyright (c) 1998-1999 Vectaport Inc.
* Copyright (c) 1994, 1995 Vectaport Inc., Cider Press
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee, provided
* that the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation, and that the names of the copyright holders not be used in
* advertising or publicity pertaining to distribution of the software
* without specific, written prior permission. The copyright holders make
* no representations about the suitability of this software for any purpose.
* It is provided "as is" without express or implied warranty.
*
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
* IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL,
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/
/*
* OverlayIdraw-specific commands.
*/
#ifndef ovcmds_h
#define ovcmds_h
#include <OverlayUnidraw/ovcamcmds.h> // for backward compatibility
#include <OverlayUnidraw/ovcomps.h>
#include <UniIdraw/idcmds.h>
#include <Unidraw/Commands/edit.h>
#include <Unidraw/Commands/struct.h>
#include <InterViews/action.h>
class OpenFileChooser;
class OverlayViewer;
class PageDialog;
#include <iosfwd>
//: derived new command.
class OvNewCompCmd : public NewCompCmd {
public:
OvNewCompCmd(ControlInfo*, Component* prototype = nil);
OvNewCompCmd(Editor* = nil, Component* prototype = nil);
virtual void Execute();
// create new (empty) document.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
//: derived revert command.
class OvRevertCmd : public RevertCmd {
public:
OvRevertCmd(ControlInfo*);
OvRevertCmd(Editor* = nil);
virtual void Execute();
// revert to disk version of current document.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
//: derived open command.
class OvViewCompCmd : public ViewCompCmd {
public:
OvViewCompCmd(ControlInfo*, OpenFileChooser* = nil);
OvViewCompCmd(Editor* = nil, OpenFileChooser* = nil);
virtual void Execute();
// pop-up filechooser and attempt to open document.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
protected:
OpenFileChooser* chooser_;
};
//: derived open command with grid support.
class OvOpenCmd : public OvViewCompCmd {
public:
OvOpenCmd(ControlInfo*, OpenFileChooser* = nil);
OvOpenCmd(Editor* = nil, OpenFileChooser* = nil);
virtual void Execute();
// run base class execute method, then set grid spacing
// from attributes of just-opened document.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
//: derived save command.
class OvSaveCompCmd : public SaveCompCmd {
public:
OvSaveCompCmd(ControlInfo*, OpenFileChooser* = nil);
OvSaveCompCmd(Editor* = nil, OpenFileChooser* = nil);
~OvSaveCompCmd();
void Init();
virtual void Execute();
// use catalog to save document in ASCII script format.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
Component* component() { return comp_; }
// return pointer to saved component.
protected:
OpenFileChooser* chooser_;
void Init(OpenFileChooser*);
Component* comp_;
};
//: derived save-as command.
class OvSaveCompAsCmd : public SaveCompAsCmd {
public:
OvSaveCompAsCmd(ControlInfo*, OpenFileChooser* = nil);
OvSaveCompAsCmd(Editor* = nil, OpenFileChooser* = nil);
~OvSaveCompAsCmd();
void Init();
virtual void Execute();
// prompt for pathname to save document to.
virtual Command* Copy();
virtual ClassId GetClassId();
Component* component() { return comp_; }
// return pointer to saved component.
void pathname(const char*);
// set pathname to save file to.
protected:
OpenFileChooser* chooser_;
void Init(OpenFileChooser*);
virtual boolean IsA(ClassId);
char* path_;
Component* comp_;
};
//: derived quit command.
class OvQuitCmd : public QuitCmd {
public:
OvQuitCmd(ControlInfo*);
OvQuitCmd(Editor* = nil);
virtual void Execute();
// prompt to save document if modified, then quit application.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
//: derived delete command that can be made irreversable.
class OvDeleteCmd : public DeleteCmd {
public:
OvDeleteCmd(ControlInfo*, Clipboard* = nil);
OvDeleteCmd(Editor* = nil, Clipboard* = nil);
virtual ~OvDeleteCmd();
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
virtual boolean Reversable();
// changeable value.
void Reversable(boolean);
// set reversable value.
protected:
boolean _reversable;
};
//: derived select-all command.
class OvSlctAllCmd : public SlctAllCmd {
public:
OvSlctAllCmd(ControlInfo*);
OvSlctAllCmd(Editor* = nil);
virtual void Execute();
// create new OverlaySelection with everything in it.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
//: derived group command.
class OvGroupCmd : public GroupCmd {
public:
OvGroupCmd(ControlInfo*, OverlayComp* dest = nil);
OvGroupCmd(Editor* = nil, OverlayComp* dest = nil);
virtual void Execute();
// create new OverlaysComp and stuff selection in it.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
virtual OverlaysComp* MakeOverlaysComp();
// construct an OverlaysComp.
OverlayComp* GetGroup();
// get OverlaysComp used by execute method.
void SetGroup(OverlayComp*);
// set OverlaysComp to be used by execute method.
};
inline OverlayComp* OvGroupCmd::GetGroup () { return (OverlayComp*) _group; }
inline void OvGroupCmd::SetGroup (OverlayComp* g) { _group = g; }
//: derived new-view command.
class OvNewViewCmd : public NewViewCmd {
public:
OvNewViewCmd(ControlInfo*, const char* display=nil);
OvNewViewCmd(Editor* = nil, const char* display=nil);
virtual ~OvNewViewCmd();
virtual void Execute();
// create new view by constructing an OverlayEditor and asking
// the unidraw object to open it.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
void set_display();
// prompt for alternate X11 display to attempt opening new view upon.
void clr_display();
// clear alternate X11 display to attempt opening new view upon.
const char* display();
// return alternate X11 display string.
void display(const char*);
// set alternate X11 display string.
static OvNewViewCmd* default_instance() { return _default; }
// return default instance of this command.
static void default_instance(OvNewViewCmd* cmd)
{ _default = cmd; }
// set default instance of this command.
protected:
char * _display;
static OvNewViewCmd* _default;
};
declareActionCallback(OvNewViewCmd)
//: derived close command.
class OvCloseEditorCmd : public CloseEditorCmd {
public:
OvCloseEditorCmd(ControlInfo*);
OvCloseEditorCmd(Editor* = nil);
virtual void Execute();
// close current viewer, invoking OvSaveAsCmd if needed.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
//: command to toggle page graphic visibility.
class PageCmd : public Command {
public:
PageCmd(ControlInfo*);
PageCmd(Editor* = nil);
virtual void Execute();
// toggle visibility of graphic that shows outline of current page.
virtual boolean Reversible();
// returns false.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
//: command to set page size.
class PrecisePageCmd : public Command {
public:
PrecisePageCmd(ControlInfo*);
PrecisePageCmd(Editor* = nil);
virtual ~PrecisePageCmd();
virtual void Execute();
// prompt for page width and height, and then recreate page graphic.
virtual boolean Reversible();
// returns false.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
protected:
PageDialog* _dialog;
};
//: command to enable/disable continuous mode drawing with pointer (mouse).
class ScribblePointerCmd : public Command {
public:
ScribblePointerCmd(ControlInfo*);
ScribblePointerCmd(Editor* = nil);
virtual void Execute();
// toggle current scribble_pointer value.
virtual boolean Reversible();
// returns false.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
//: command to internally tile a PGM or PPM image.
class TileFileCmd : public Command {
public:
TileFileCmd(ControlInfo*);
TileFileCmd();
TileFileCmd(
Editor*, const char* ifn, const char* ofn, int twidth, int theight
);
TileFileCmd(
ControlInfo*, const char* ifn, const char* ofn, int twidth, int theight
);
virtual ~TileFileCmd();
virtual void Execute();
// create a new internally tiled PGM or PPM binary image from an
// existing untiled PGM or PPM binary image.
virtual boolean Reversible();
// returns false.
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
private:
const char* _ifn;
const char* _ofn;
int _twidth;
int _theight;
};
//: command to dump current viewer canvas as .xwd file.
class OvWindowDumpAsCmd : public SaveCompAsCmd {
public:
OvWindowDumpAsCmd(ControlInfo*, OpenFileChooser* = nil);
OvWindowDumpAsCmd(Editor* = nil, OpenFileChooser* = nil);
~OvWindowDumpAsCmd();
void Init();
virtual void Execute();
// prompt for pathname, then write contents of current viewer canvas
// to that file by invoking "xwd" with the appropriate X window id.
virtual Command* Copy();
protected:
OpenFileChooser* chooser_;
void Init(OpenFileChooser*);
};
//: command to create clickable imagemap from viewer canvas.
class OvImageMapCmd : public SaveCompAsCmd {
public:
OvImageMapCmd(ControlInfo*, OpenFileChooser* = nil);
OvImageMapCmd(Editor* = nil, OpenFileChooser* = nil);
~OvImageMapCmd();
void Init();
virtual void Execute();
// prompt for pathname, then export current viewer canvas as a
// clickable imagemap, with URL's written out where-ever "url"
// attributes exist.
virtual Command* Copy();
protected:
OpenFileChooser* chooser_;
void Init(OpenFileChooser*);
void DumpViews(OverlayView*, ostream&, ostream&);
void DumpPolys(OverlayView*, ostream&, ostream&, float* ux, float* uy, int unp,
int pwidth, int pheight);
void GetScreenCoords(OverlayViewer* viewer, Graphic* poly,
int nf, float* fx, float* fy,
int& ni, int*& ix, int*& iy);
};
//: command to push down one level in the graphical structure
class PushCmd : public BackCmd {
public:
PushCmd(ControlInfo*);
PushCmd(Editor* = nil);
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
//: command to pull up one level in the graphical structure
class PullCmd : public FrontCmd {
public:
PullCmd(ControlInfo*);
PullCmd(Editor* = nil);
virtual Command* Copy();
virtual ClassId GetClassId();
virtual boolean IsA(ClassId);
};
#endif
|