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
|
/*
* Copyright (c) 2008, 2015 Oracle and/or its affiliates. All rights reserved.
*
* 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; version 2 of the
* License.
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef _LF_FORM_H_
#define _LF_FORM_H_
#include <mforms/mforms.h>
#include <boost/signals2.hpp>
#include <sigc++/sigc++.h>
#include "gtk_helpers.h"
#include "lf_button.h"
#include "lf_view.h"
#include "lf_mforms.h"
namespace mforms {
namespace gtk {
class FormImpl : public ViewImpl
{
Gtk::Window *_window;
int _in_modal_loop;
bool _result;
virtual Gtk::Widget *get_outer() const { return _window; }
boost::signals2::scoped_connection accept_c;
boost::signals2::scoped_connection cancel_c;
static bool create(::mforms::Form *self, ::mforms::Form *owner, mforms::FormFlag flag);
static void set_title(::mforms::Form *self, const std::string &title);
void accept_clicked(bool *status, const bool is_run);
void cancel_clicked(bool *status, const bool is_run);
bool on_widget_delete_event(GdkEventAny* event, Button *cancel);
bool can_delete_widget(GdkEventAny* event);
static void show_modal(::mforms::Form *self, ::mforms::Button *accept, ::mforms::Button *cancel);
static void end_modal(::mforms::Form *self, bool result);
bool on_key_release(GdkEventKey* event, bool *status, const bool is_run, ::mforms::Button *accept, ::mforms::Button *cancel);
static bool run_modal(::mforms::Form *self, ::mforms::Button *accept, ::mforms::Button *cancel);
static void close(::mforms::Form *self);
static void set_content(::mforms::Form *self, ::mforms::View *child);
static void flush_events(::mforms::Form *self);
static void center(Form *self);
static void set_menubar(mforms::Form *self, mforms::MenuBar *menu);
void realized(mforms::Form *owner, Gdk::WMDecoration flags);
virtual void set_size(int width, int height);
virtual void set_name(const std::string &name);
bool on_focus_event(GdkEventFocus* ev, ::mforms::Form *form);
public:
FormImpl(::mforms::Form *form, ::mforms::Form *owner, mforms::FormFlag form_flag);
virtual void set_title(const std::string &title);
static void init();
static void init_main_form(Gtk::Window* main);
Gtk::Window* get_window() {return _window;}
};
};
};
#endif
|