Gtkmm web front-end.

2013-07-30 Thread sourav
Hi, We have developed an application for an embedded device. Everythings runs fine until I encountered this irritating bug on the web frontend. -- we are running the web frontend also for the application and when a button is being clicked, on the first click it works fine but if the mouse pointer

Re: Gtkmm web front-end.

2013-08-13 Thread sourav
Yes I use Gtkmm. The problem with any click event on the web front-end which does not change the view (for example a button to increment some counter ) is that, if the mouse cursor is not moved after the first click, the click event does get fired for subsequent time. Click event gets fired for

Trigger an event manually.

2013-08-20 Thread sourav
I am using Gtkmm and would like to pragmatically fire an event (say like a click event), which simulates the on_button_click event. How am I supposed to do that. That is, when execution reach a particular method in my application, the manual event should get fired. Any help is greatly appreciated.

Generate a signal when the ComboBoxText is clicked.

2014-01-21 Thread sourav
I am writing a simple GUI, in which I have a ComboBoxText. I write a log message when ever the user clicks on the ComboBoxText. I have tried almost all the button release and popup signals but no results. The only thing which works is signal_changed() but I don't not need that. Please help me,