File: RasterView.h

package info (click to toggle)
rasterview 1.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,120 kB
  • sloc: cpp: 5,677; ansic: 2,211; makefile: 93; python: 13
file content (91 lines) | stat: -rw-r--r-- 2,563 bytes parent folder | download | duplicates (2)
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
//
// CUPS raster file viewer application window header file.
//
// Copyright 2002-2015 by Michael R Sweet.
//
// Licensed under Apache License v2.0.  See the file "LICENSE" for more
// information.
//

#ifndef RasterView_h
#  define RasterView_h


//
// Include necessary headers...
//

#  include "RasterDisplay.h"
#  include <FL/Fl_Double_Window.H>
#  include <FL/Fl_Box.H>
#  include <FL/Fl_Button.H>
#  include <FL/Fl_Int_Input.H>
#  include <FL/Fl_Sys_Menu_Bar.H>
#  include <FL/Fl_Text_Display.H>
#  include <FL/Fl_Help_Dialog.H>


//
// RasterView application class...
//

class RasterView : public Fl_Double_Window
{
  RasterView		*next_;		// Next window in list
  char			*filename_;	// Filename
  char			*title_;	// Window title
  int			loading_;	// Non-zero if we are loading a page
  char			pixel_[1024];	// Current pixel value
  Fl_Sys_Menu_Bar	*menubar_;	// Menubar
  RasterDisplay		*display_;	// Display widget
  Fl_Group		*buttons_;	// Button bar
  Fl_Box		*status_;	// Status box
  Fl_Button		*prev_button_,	// Previous page button
			*next_button_,	// Next page button
			*zoom_in_button_,	// Zoom-in mode button
			*zoom_out_button_,	// Zoom-out mode button
			*pan_button_,	// Pan mode button
			*color_button_,	// Color inspector mode button
			*attrs_button_;	// Toggle attributes button
  Fl_Int_Input		*page_input_;	// Page number control
  Fl_Group		*attributes_;	// Attributes pane
  Fl_Button		*colors_[15];	// Color buttons
  Fl_Text_Display	*header_;	// Page header
  Fl_Text_Buffer	*header_buffer_;// Attribute buffer

  static RasterView	*first_;	// First window in list
  static Fl_Help_Dialog	*help_;		// Help dialog


#  ifdef __APPLE__
  static void	apple_open_cb(const char *f);
#  endif // __APPLE__
  static void	attrs_cb(Fl_Widget *widget);
  static void	close_cb(Fl_Widget *widget);
  static void	color_cb(RasterDisplay *display);
  static void	device_cb(Fl_Widget *widget);
  static void	goto_cb(Fl_Widget *widget);
  static void	help_cb();
  void		init();
  void		load_attrs();
  static void	mode_cb(Fl_Widget *widget);
  static void	next_cb(Fl_Widget *widget);
  static void	open_cb();
  static void	prev_cb(Fl_Widget *widget);
  static void	quit_cb();
  static void	reopen_cb(Fl_Widget *widget);
  void		set_filename(const char *f);

  public:

  RasterView(int X, int Y, int W, int H, const char *L = 0);
  RasterView(int W, int H, const char *L = 0);
  ~RasterView();

  int			handle(int event);
  static RasterView	*open_file(const char *f);
  void			resize(int X, int Y, int W, int H);
};


#endif // !RasterView_h