/[svn]/gigedit/trunk/src/gigedit/dimregionchooser.h
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/dimregionchooser.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1623 by persson, Fri Jan 4 19:42:45 2008 UTC revision 2556 by schoenebeck, Fri May 16 23:19:23 2014 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006-2008 Andreas Persson   * Copyright (C) 2006-2014 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 21  Line 21 
21  #define GIGEDIT_DIMREGIONCHOOSER_H  #define GIGEDIT_DIMREGIONCHOOSER_H
22    
23  #include <gtkmm/drawingarea.h>  #include <gtkmm/drawingarea.h>
24  #include <gdkmm/colormap.h>  #include <gtkmm/uimanager.h>
25    #include <gtkmm/menu.h>
26  #include <gdkmm/window.h>  #include <gdkmm/window.h>
27    
28    #include "compat.h"
29    
30  #include <gig.h>  #include <gig.h>
31    
32  #include <set>  #include <set>
# Line 44  public: Line 47  public:
47                          std::set<gig::DimensionRegion*>& dimregs) const;                          std::set<gig::DimensionRegion*>& dimregs) const;
48    
49  protected:  protected:
50      virtual void on_realize();  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
51      virtual bool on_expose_event(GdkEventExpose* e);      virtual bool on_expose_event(GdkEventExpose* e);
52      virtual void on_size_request(GtkRequisition* requisition);  #else
53        virtual bool on_draw(const Cairo::RefPtr<Cairo::Context>& cr);
54    #endif
55      virtual bool on_button_press_event(GdkEventButton* event);      virtual bool on_button_press_event(GdkEventButton* event);
56      virtual bool on_button_release_event(GdkEventButton* event);      virtual bool on_button_release_event(GdkEventButton* event);
57      virtual bool on_motion_notify_event(GdkEventMotion* event);      virtual bool on_motion_notify_event(GdkEventMotion* event);
58      virtual bool on_focus(Gtk::DirectionType direction);      virtual bool on_focus(Gtk::DirectionType direction);
59        void refresh_all();
60        void split_dimension_zone();
61        void delete_dimension_zone();
62    
63      Glib::RefPtr<Gdk::GC> gc;      Gdk::RGBA red, black, white;
     Gdk::Color blue, red, black, white, green;  
64    
65      gig::Instrument* instrument;      gig::Instrument* instrument;
66      gig::Region* region;      gig::Region* region;
# Line 66  protected: Line 73  protected:
73      int focus_line;      int focus_line;
74      int dimvalue[256];      int dimvalue[256];
75      int label_width;      int label_width;
76        bool labels_changed;
77      int nbDimensions;      int nbDimensions;
78    
79        int dimtype;
80        int dimzone;
81    
82      // information needed during a resize      // information needed during a resize
83      struct {      struct {
84          bool active;          bool active;
# Line 85  protected: Line 96  protected:
96    
97      bool cursor_is_resize;      bool cursor_is_resize;
98      bool is_in_resize_zone(double x, double y);      bool is_in_resize_zone(double x, double y);
99        void update_after_resize();
100    
101      int h;      int h;
102    
103        Glib::RefPtr<Gtk::ActionGroup> actionGroup;
104        Glib::RefPtr<Gtk::UIManager> uiManager;
105        Gtk::Menu* popup_menu_inside_dimregion;
106        Gtk::Menu* popup_menu_outside_dimregion;
107  };  };
108    
109  #endif  #endif

Legend:
Removed from v.1623  
changed lines
  Added in v.2556

  ViewVC Help
Powered by ViewVC