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!
...
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 ...
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.
...
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.
...
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...
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>...
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
...
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...
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?
...
Hi, I am writing a desktop application using SWT. What is the simplest way to update GUI controls from another thread?
...
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 --------------> ...
| #
...
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?
...
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
...
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)
...
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 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...
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...
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
...
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...
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...