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
|
#ifndef __RECORDSET_VIEW_H__
#define __RECORDSET_VIEW_H__
#include "sqlide/grid_view.h"
#include "sqlide/recordset_be.h"
#include <gtkmm.h>
class RecordsetView : public Gtk::Frame
{
public:
static RecordsetView * create(Recordset::Ref model, Gtk::Container *parent);
~RecordsetView();
protected:
RecordsetView(Recordset::Ref model);
private:
virtual void init();
public:
void model(Recordset::Ref value);
Recordset::Ref model() { return _model; }
protected:
Recordset::Ref _model;
Gtk::Menu _context_menu;
GridView *_grid;
Gtk::Box *_toolbar_box;
protected:
Gtk::Button *_close_btn;
Gtk::Entry *_filter_entry;
int _single_row_height;
public:
virtual int refresh();
virtual void reset();
void save_changes();
void revert_changes();
bool has_changes();
void update_toolbar();
protected:
virtual bool on_event(GdkEvent *event);
void on_commit_btn_clicked();
void on_rollback_btn_clicked();
void on_goto_first_row_btn_clicked();
void on_goto_last_row_btn_clicked();
void on_record_prev();
void on_record_next();
void on_record_edit();
void on_record_add();
void on_record_del();
void on_record_sort_asc();
void on_record_sort_desc();
void on_toggle_vertical_sizing();
void set_fixed_row_height(int);
Gtk::Widget *create_toolbar_item(const bec::ToolbarItem &item);
void activate_popup_menu_item(const std::string&, const std::vector<int>&, int);
bool activate_toolbar_item(const std::string &action);
bool on_data_search_entry_key_pressed(GdkEventKey *event, Gtk::Entry *search_entry);
};
#endif // __RECORDSET_VIEW_H__
|