gui

Search Box in QToolbar

Does anybody knows how to make a good search box in Qt (actualy PyQt). It should sit in the toolbar (QToolbar) and look a little different than your normal QLineEdit (rounded corners and an icon as prefix). It should be aligned right with a blank space between the rest of the controls. All tips welcome! ...

Is switch from MFC to QT or WTL (or other GUI toolkit) recommended for Windows CE development?

There are pretty many questions regarding C++ GUI toolkits for Windows, but they mostly apply to desktop OS versions. I'm now starting a C++ project for Windows CE 5.0 VGA hand-held device, and thinking about what GUI library to choose. I have some experience using MFC in Windows CE projects, but there are some known weak points of MFC ...

How to set the Componenets in Horizontal Manager in Blackberry?

Hi friends, Can any one tell me how to set a componenets in a particular position in horizontal layout manager in blackberry.If u can provide me some code snippet. regards, s.kumaran. ...

Blackberry - animation in a same BitmapField during some process

Actually i want to show an animated picture motion in PopupScreen when some process is going on in the background like password checking or nwtwork connection. I dont know where to call the repaint or invalidate method and how to implement thread . Please write a simple program with required code. ...

Capturing all click events in user control

Hi, I'm developing a custom list sort of idea, which consists basically of usercontrols stacked vertically in a FlowLayoutPanel. I'm writing it this way so that I can add buttons that appear on the list item when it is selected. The list item control has a few labels on it and some panels, so in order to determine whether the whole li...

Javascript / JQuery: refresh tab in parent

Hello, I have a (parent) window containing JQuery tabs: <div id="tabs"> <ul class="tabHeader"> <li><a href="?ctrl=doSomething" title="#tabs-something"> Awesome function</a></li> <li><a href="?ctrl=showSettings" title="#tabs-showSettings"> Settings</a></li> </ul>...

IP Address? - Cocoa

Hi guys, How would I make a GUI program that displays your Ip address with a click of a button? Please, no difficult explanations, I just started Cocoa not long ago. Thanks, Kevin ...

How to get a focus on editfield in blackberry?

Dear Friends,Can any one help me how to get a focus on editfield in blackberry which is placed in a horizontalfield manager.Actually i am having two customeditfield and one button all these are placed in one horizontal field manger and button is in the last position while running the program.focus only goes to button and no edit field is...

native win32 gui programming in c++ or choose wxWidgets ?

Hello all i like to write GUI software ( i have no experience in GUI programming ) i need it to be small as possible and fast GUI and native Look and Feel in one self contained exe . only on windows from windows 2000 to windows 7 ( or what ever it called ) . what will be the best choice ? win32 api or wxWidgets? ...

How to update a GUI from another thread in Java

Hi, I am writing a desktop application using SWT. What is the simplest way to update GUI controls from another thread? ...

Separation of GUI and logic in different threads in a Windows Form application

In a Windows Forms application I want to separate the GUI from the logic. The user requests are complex and involve communications so I don't want it to depend on the GUI thread. The structure should be something like: GUI -----> splash screen ---------> User Form --------------> ... | # ...

Displaying translucent / irregular-shaped windows with Qt

Is it possible to display translucent and/or irregular-shaped windows with Qt? (I'm assuming it ultimately depends on the capabilities of the underlying GUI system, but let's assume at least Windows XP / Mac OS X) If so, how does one accomplish this? ...

Browse bazaar (or CVS/SVN/Git) repository with GUI?

Hi, Is there a nice, open-source, free way to browse a bazaar (or other source control) repository? What I had in mind is a wikipedia-history-like browsing, where I can watch and compare any two versions of the code. EDIT: I strongly prefer Ubuntu tools. Thanks, Udi ...

Looking for an application GUI library for C++

I'm thinking about writing a very simple paint program. I would like a more advanced method of inputting data into my program like colors, thickness of the brush, etc. I would like to use a GUI library so I can program buttons and menus to make input easier. Any suggestions? (I'm running Visual C++ 2005 SP1) ...

Blackberry - Custom size EditField

I am trying to put together a dialog that should look like this: Fill in the below fields ___________ likes ________________ where the "_" lines are the EditFields. I am sticking all the fields in a HorizontalFieldManager, which I add to the dialog. Unfortunately, the first EditField consumes all the space on the first line. I have tr...

What are good Java date-chooser Swing GUI widgets?

What are good Java Swing date-chooser components? So far I've only really found these 2: JCalendar - this one is pretty good as it uses the underlying look and feel. JXMonthView in the swingx project - not so good as it uses its own look and feel Both of these look a bit clunky when compared with some I've seen on web-pages. For exam...

What exactly changed when QStandardItemModel itemChanged is signaled

There is signal in QStandardItemModel which is emitted when data of an item is changed. Usually we connect a handler for this signal and do all the work in the handler routine. Such handle routine only gets pointer to the item. Using this pointer it is possible to access the data of the item. However, we do not know what exactly has cha...

How to dynamically add buttons to TCategoryPanelGroup?

Has anybody experience with Delphi 2009's TCategoryPanelGroup component and specifically with dynamically adding buttons to category panels? I can't get it to work properly. Either the buttons do not appear or the alignment is screwed up. Basic outline of what I want to do: procedure AddButton (const Caption, Group : String); const ...

MFC extension libraries (GUI/Controls) recommendations

We're developing/supporting 2 large MFC applications, using VS 2005. Currently, we are looking at various MFC GUI/controls component libraries: www.bcgsoft.com : "BCGControlBar Pro" www.codejock.com : "Toolkit Pro" www.prof-uis.com : "Prof-UIS" others? The samples/demos provided for those look all great, and the feature sets seem to...

How do I make a thread wait for JFrame to close in Java?

When the program starts, a new JFrame is created. Once the user clicks the start button a thread is created and started. Part of this threads execution is to validate the data on the form and then execute with that data. Once the data has been validated the thread calls dispose() on the original frame and then creates a new JFrame that a...