update retinexadd with master 4d6833c

This commit is contained in:
Desmis
2016-01-03 15:48:22 +01:00
parent c9a6f74efa
commit 4e229fe928
58 changed files with 7810 additions and 533 deletions

View File

@@ -21,16 +21,24 @@
#ifndef _POPUPBUTTON_
#define _POPUPBUTTON_
#include <gtkmm.h>
#include <gtkmm/button.h>
#include "popupcommon.h"
class PopUpButton : public Gtk::Button, public PopUpCommon
{
public:
PopUpButton (const Glib::ustring& label = "");
PopUpButton (const Glib::ustring& label = Glib::ustring (), bool nextOnClicked = false);
void show ();
void set_tooltip_text (const Glib::ustring &text);
void set_sensitive (bool isSensitive=true);
protected:
bool on_button_release_event (GdkEventButton* event);
private:
bool nextOnClicked;
};
#endif