~ubuntu-branches/ubuntu/natty/plee-the-bear/natty

« back to all changes in this revision

Viewing changes to bear-factory/animation-editor/src/bf/main_frame.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Julien Jorge, Julien Jorge
  • Date: 2010-11-17 20:13:34 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101117201334-o4dp7uq437to7oxb
Tags: 0.5.1-1
[ Julien Jorge ]
* New upstream release (Closes: #565062, #546514).
* Add armhf architecture (Closes: #604689).
* Remove patches integrated upstream: rpath-editors.diff, rpath-game.diff,
  editors-menu-section.diff.
* Bump the Standard-Version, no changes.
* Update my email address.
* Set build dependency of libclaw to 1.6.0.
* Add the missing ${misc:Depends} in debian/control.
* List gettext translations in bear-factory.install and plee-the-bear.install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
    Bear Engine - Animation editor
3
3
 
4
 
    Copyright (C) 2005-2009 Julien Jorge, Sebastien Angibaud
 
4
    Copyright (C) 2005-2010 Julien Jorge, Sebastien Angibaud
5
5
 
6
6
    This program is free software; you can redistribute it and/or modify it
7
7
    under the terms of the GNU General Public License as published by the
47
47
    enum control_id
48
48
      {
49
49
        ID_UPDATE_IMAGE_POOL,
50
 
        ID_COMPILE
 
50
        ID_COMPILE,
 
51
        ID_SCALE_DURATION,
 
52
        ID_CHANGE_DURATION
51
53
      }; // enum control_id
52
54
 
53
55
  public:
71
73
    void create_controls();
72
74
 
73
75
    wxMenu* create_animation_menu() const;
 
76
    wxMenu* create_edit_menu() const;
74
77
    wxMenu* create_help_menu() const;
75
78
 
76
79
    void save_config();
86
89
    void on_save_as(wxCommandEvent& event);
87
90
    void on_compile(wxCommandEvent& event);
88
91
    void on_exit(wxCommandEvent& event);
 
92
 
 
93
    void on_change_duration(wxCommandEvent& event);
 
94
    void on_scale_duration(wxCommandEvent& event);
 
95
 
89
96
    void on_online_doc(wxCommandEvent& event);
90
97
    void on_about(wxCommandEvent& event);
91
98
    void on_close(wxCloseEvent& event);