File: keyboard.cxx

package info (click to toggle)
imview 1.1.9c-12
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,792 kB
  • ctags: 5,342
  • sloc: cpp: 28,736; sh: 2,624; ansic: 1,818; makefile: 723; exp: 112; python: 88
file content (334 lines) | stat: -rw-r--r-- 10,207 bytes parent folder | download | duplicates (8)
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
/*
 * $Id: keyboard.cxx,v 4.7 2007/06/07 13:30:18 hut66au Exp $
 *
 * Imview, the portable image analysis application
 * http://www.cmis.csiro.au/Hugues.Talbot/imview
 * ----------------------------------------------------------
 *
 *  Imview is an attempt to provide an image display application
 *  suitable for professional image analysis. It was started in
 *  1997 and is mostly the result of the efforts of Hugues Talbot,
 *  Image Analysis Project, CSIRO Mathematical and Information
 *  Sciences, with help from others (see the CREDITS files for
 *  more information)
 *
 *  Imview is Copyrighted (C) 1997-2001 by Hugues Talbot and was
 *  supported in parts by the Australian Commonwealth Science and 
 *  Industry Research Organisation. Please see the COPYRIGHT file 
 *  for full details. Imview also includes the contributions of 
 *  many others. Please see the CREDITS file for full details.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *  
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *  
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
 * */

/*------------------------------------------------------------------------
 *
 * This files complements the imageViewer class by handling
 * the keyboard inputs.
 *
 * The idea is to put together useful shortcuts in additions
 * to the ones provided by the menus.
 *
 * Hugues Talbot	18 Mar 1998
 *      
 *-----------------------------------------------------------------------*/

#include <FL/Fl.H>
#include <assert.h>
#include "imview.hxx"
#include "imageIO.hxx"
#include "pointfile.hxx"
#include "imageViewer.hxx"
#include "menubar.hxx"
#include "server/interpreter.hxx"

extern imageViewer *mainViewer;
extern linkmanager *imview_linkmanager;

extern int appMaxWidth, appMaxHeight;

extern bool disableIOKeys;
extern displaymode displaymodepref;
extern bool fullScreen;

bool imageViewer::toggle_fullscreen(void)
{
    static displaymode olddspmode = displaymodepref; // irrelevant default
    static int  oldx = -1, oldy=-1, oldw=-1, oldh=-1;

    dbgprintf("Toggling fullscreen status\n");

    if (fullScreen) { // undo fullscreen
        dbgprintf("  Undoing fullscreen, reverting to (%d+%d-%dx%d)\n",
                  oldx, oldy, oldw, oldh);
	assert((oldw > 0) && (oldh > 0));
	parentWindow->fullscreen_off(oldx, oldy, oldw, oldh);
	setdisplaymode(olddspmode);
    } else {
	oldx = parentWindow->x(); // incorrect, should be global x()
	oldy = parentWindow->y();
	oldw = parentWindow->w();
	oldh = parentWindow->h();
	dbgprintf("  Going fullscreen, saved dimensions as (%d+%d-%dx%d)\n",
                  oldx, oldy, oldw, oldh);
	olddspmode = getdisplaymode();
	setdisplaymode(IMV_DISPLAY_DECOUPLE_WIN_IMG);
	parentWindow->fullscreen();
    }

    fullScreen = !fullScreen;

    return fullScreen;
}

// handle more keyboard shortcuts
int imageViewer::handleKeyboardEvent()
{
    int retval= 0;
    const char *txt;

    // look for special characters first
    switch (Fl::event_key()) {
    case FL_Escape:
        if (!disableIOKeys) 
            quit_cb(0,0);
        retval = 1;
        break;

	/* frame switch */
    case FL_Page_Up:
        dbgprintf("Page up key pressed\n");
        nextframe_cb(0,0);
        retval = 1;
        break;

    case FL_Page_Down:
        dbgprintf("Page down key pressed\n");
        previousframe_cb(0,0);
        retval = 1;
        break;

	/* component switch */
    case FL_Home:
        dbgprintf("Home key pressed \n");
        nextcomponent_cb(0,0);
        retval = 1;
        break;

    case FL_End:
        dbgprintf("End key pressed \n");
        previouscomponent_cb(0,0);
        retval = 1;
        break;

	/* 3D switch */
    case FL_Insert:
        dbgprintf("Insert key pressed \n");
        nextplane_cb(0,0);
        retval = 1;
        break;

    case FL_Delete:
        dbgprintf("Delete key pressed \n");
        previousplane_cb(0,0);
        retval = 1;
        break;

    case FL_BackSpace:
        dbgprintf("Backspace key pressed \n");
        previousimage_cb(0,0);
        retval = 1;
        break;
    }

    // then look for normal text
    txt = Fl::event_text();
    dbgprintf("Received keyboard event with text: %s\n", txt);

    switch (txt[0]) {
    case 'C':
    case 'G':
    case 's':
        retval = 0;
        break;

    case 'R': // reset the display (return to default zoom, maximises)
        if (Fl::event_state() & FL_ALT) {
            defaultZoomFactor_ = 1.0;
        }
        unzoom_cb(0,0);
        resetDisplay();
        retval = 1;
        break;	
    case 'c': // close the current image
        if (!disableIOKeys) 
            close_cb(0,0);
        retval = 1;
        break;
    case ' ': // another way to walk the image list 
        if (Fl::event_key(FL_Shift_L) || Fl::event_key(FL_Shift_R))
            previousimage_cb(0,0);
        else
            nextimage_cb(0,0);
        retval = 1;
        break;
    case 'f':
        if (!(Fl::event_state() & FL_ALT)) {
            fullscreen_cb(0,0);
            retval = 1;
        } // alt-f invokes the file menu.
        break;
    case 'k': // display the next image in list
        nextimage_cb(0,0);
        retval = 1;
        break;
    case 'l': // display the previous image in list
        previousimage_cb(0,0);
        retval = 1;
        break;
    case 'm': // maximise the display
        resetDisplay(false,true);
        retval = 1;
        break;
    case 'n': // return zoom to default value
        unzoom_cb(0,0);
        retval = 1;
        break;
    case 'o': // open a new image
        if (!disableIOKeys) 
            open_cb(0,0);
        retval = 1;
        break;
    case 'p': // closes the point file
        if (!disableIOKeys) 
            closepointfile_cb(0,0);
        retval = 1;
        break;
    case 'q':	// quit the application
        if (!disableIOKeys) 
            quit_cb(0,0);
        retval = 1;
        break;
    case 'r': // redraw the display (do nothing else...)
        redraw();
        retval = 1;
        break;	
    case '.': // zoom in by 10% and grow the window
        if (!(Fl::event_state() & FL_ALT) && (getdisplaymode() == IMV_DISPLAY_WINDOW_FIT_IMG)) {
            // change the DEFAULT zoom factor
            defaultZoomFactor_ = imageZoomFactor_ * 1.1;
            zoomFactor(defaultZoomFactor_, false); // no redraw
            resetDisplay(false,true);
        } else {
            zoomFactor(imageZoomFactor_ * 1.1, true); // maybe redraw
        }
        retval = 1;
        break;
    case '>': 
        // zoom in by 100% and grow the window
        if (!(Fl::event_state() & FL_ALT) && (getdisplaymode() == IMV_DISPLAY_WINDOW_FIT_IMG)) {
            // change the DEFAULT zoom factor
            defaultZoomFactor_ = imageZoomFactor_ * 2.0;
            zoomFactor(defaultZoomFactor_, false); // no redraw
            resetDisplay(false,true);
        } else {
            zoomFactor(imageZoomFactor_ * 2.0, true); // maybe redraw
        }
        retval = 1;
        break;
    case ',': // zoom out by 10%
        if (!(Fl::event_state() & FL_ALT) && (getdisplaymode() == IMV_DISPLAY_WINDOW_FIT_IMG)) {
            // change the DEFAULT zoom factor
            defaultZoomFactor_ = imageZoomFactor_ / 1.1;
            zoomFactor(defaultZoomFactor_, false); // no redraw
            resetDisplay(false,true);
        } else {
            zoomFactor(imageZoomFactor_ / 1.1, true); // maybe redraw
        }
        retval = 1;
        break;
    case '<': // zoom out by 100%
        if (!(Fl::event_state() & FL_ALT) && (getdisplaymode() == IMV_DISPLAY_WINDOW_FIT_IMG)) {
            // change the DEFAULT zoom factor
            defaultZoomFactor_ = imageZoomFactor_ / 2.0;
            zoomFactor(defaultZoomFactor_, false); // no redraw
            resetDisplay(false,true);
        } else {
            zoomFactor(imageZoomFactor_ / 2.0, true); // maybe redraw
        }
        retval = 1;
        break;
    case '=': // zoom back to 100%
	if (!(Fl::event_state() & FL_ALT) && (getdisplaymode() == IMV_DISPLAY_WINDOW_FIT_IMG)) {
            // change the DEFAULT zoom factor
            defaultZoomFactor_ = 1.0;
            zoomFactor(defaultZoomFactor_, false); // no redraw
            resetDisplay(false,true);
        } else {
            zoomFactor(1.0, true); // maybe redraw
        }
        retval = 1;		
        break;
    case '[': // next image plane (3d)
        nextplane_cb(0,0);
        retval = 1;
        break;
    case ']': // previous image plane (3d)
        previousplane_cb(0,0);
        retval = 1;
        break;

    case '*': // secret!
        if (!disableIOKeys) 
            saveimagelist_cb(0,0);
        retval = 1;
        break;
    }


    return retval;
}

// redisplay and resize the image to the max that can be done.
void imageViewer::resetDisplay(bool doRedraw, bool forward)
{
    int realMinWidth, realMinHeight;

    // sometimes the scrollbars are a problem
    if (doRedraw)
        destroy_scrollbars();

    realMinWidth = trivmin(appMaxWidth,currentImageWidth());
    realMinHeight = trivmin(appMaxHeight,currentImageHeight());
    dbgprintf("Resetting image to %d x %d\n", realMinWidth, realMinHeight);

    if (parentWindow) {
        if (getdisplaymode() != IMV_DISPLAY_IMG_FIT_WINDOW) {
            sizeConstraints(realMinWidth, realMinHeight);
        } 
        sizeParent(Ox + realMinWidth, Oy + realMinHeight);
        if (doRedraw)
            redraw_image();
    }
    if (forward && imview_linkmanager) {
        if (imview_linkmanager->resetDisplay() > 0) {
            dbgprintf("Remote reset display failed\n");
        }
    }

    return;
}