The system through which people interact with a computer. UI stands for User Interface. There's now a Stack Exchange site for UI, Interaction and User Experience design: ux.stackexchange.com
61
votes
4answers
6k views
The Use of Multiple JFrames, Good/Bad Practice?
I'm developing an application which displays images, and plays sounds from a database. I'm trying to decide, whether to use a separate JFrame to add Images to the Database from the GUI. I'm just ...
41
votes
2answers
10k views
GUI not working after rewriting to MVC
I'm practicing MVC style programming. I have a Mastermind game in a single file, working fine (maybe apart of the fact that "Check" button is invisible at start).
http://paste.pocoo.org/show/226726/
...
193
votes
19answers
136k views
How to update the GUI from another thread in C#?
What is the simplest way to update a label from another thread?
My problem
I have a winform(thread1)
From thread1 I'm starting another thread (thread2).
While thread2 is processing some files, I ...
21
votes
4answers
11k views
Creating a custom button in Java with JButton
I am trying to create a button that has a custom shape (hexagon), but otherwise acts like a normal JButton would (that is, works with an ActionListener).
I have created a class that extends ...
46
votes
2answers
4k views
How to best position Swing GUIs
In another thread I stated that I liked to center my GUIs by doing something like this:
JFrame frame = new JFrame("Foo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
...
609
votes
17answers
102k views
What are MVP and MVC and what is the difference?
When looking beyond the RAD (drag-drop and configure) way of building User Interfaces that many tools encourage you are likely to come across 2 design patterns called Model-View-Controller and ...
8
votes
1answer
2k views
Swing: link toggle buttons together with a button group, along with corresponding menu items
For a school project, I need to make a simple paint application that can draw lines, ovals, and rectangles.
The assignment specifies that I need toolbar buttons and menu items for each type of shape.
...
171
votes
5answers
57k views
6
votes
2answers
3k views
Netbeans GUI editor generating its own incomprehensible code
When creating a new project in netbeans, if i select JAVA Desktop application, it creates some code which I DO NOT RECOGNISE AT ALL as what i had learnt in swing.
It imports packages such as :
...
10
votes
3answers
8k views
Cross-thread operation not valid [duplicate]
Possible Duplicate:
Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on
Okay, I know why this is giving me this error:
Cross-thread ...
63
votes
10answers
34k views
Custom fonts and XML layouts (Android)
I'm trying to define a GUI layout using XML files in Android. As far as I can find out, there is no way to specify that your widgets should use a custom font (e.g. one you've placed in assets/font/) ...
40
votes
8answers
18k views
Line-breaking widget layout for Android
I'm trying to create an activity that presents some data to the user. The data is such that it can be divided into 'words', each being a widget, and sequence of 'words' would form the data ...
13
votes
3answers
15k views
How to customize a ListField in BlackBerry?
I want to customize a ListField in BlackBerry which would be able to list an image and text in a row.
How to accomplish this?
101
votes
9answers
33k views
An executable Python app [closed]
Python works on multiple platforms and can be used for desktop and web applications, thus I conclude that there is some way to compile it into an executable for Mac, Windows and Linux.
The problem ...
167
votes
28answers
128k views
What is the best MySQL Client Application for Windows [closed]
Are there any MySQL Client applications for Windows that get even close to what the Enterprise Manager / Server Management Studio is for Microsoft SQL?
I have two requirements and one "nice to have" ...
33
votes
8answers
34k views
Change the background color of the options menu
I'm trying to change the default color for the options menu which is white. I want a black background for every item on the options menu. I've tried some shoots like android:itemBackground="#000000" ...
89
votes
20answers
74k views
Good C++ GUI library for Windows
I'm looking for good windows GUI library for C++. The Ideal in my opinion shoud be:
Modern. MFC, wxWidgets, Qt were started a long time ago and they don't use modern C++ features and standard ...
49
votes
6answers
40k views
Choose File Dialog
Does anyone know of a complete choose file dialog? Maybe one where you can filter out all files except for ones with specific extensions? The internet needs such an example. I have not found anything ...
6
votes
1answer
4k views
Simple popup java form with at least two fields
This is, I suppose, a very simple question for any Java programmer.
My question is as simple as this:
When the user clicks a button, I want to show a popup form that should have at least two ...
2
votes
4answers
4k views
Multiple row selection in JTable
I have a JTable, that has one column that is text which is not editable and the second column is a check box that displays boolean values.... Now what i want is, when the user selects multiple rows ...
20
votes
3answers
26k views
Blackberry User Interface Design - Customizable UI?
I am trying to design a Blackberry Application and I am wondering if there are any resources on how to create custom user interface elements, skin existing ones and what other possibilities are there?
...
245
votes
23answers
132k views
Is Python any good for GUI development? [closed]
I am considering creating a GUI-based tool that I want to be cross-platform. I've dismissed Java, as I personally do not like Swing. I'm currently considering C# and using Mono to make it ...
8
votes
7answers
10k views
Custom titlebars/chrome in a WinForms app
I'm almost certain I know the answer to this question, but I'm hoping there's something I've overlooked.
Certain applications seem to have the Vista Aero look and feel to their caption bars and ...
148
votes
9answers
186k views
How do I add options to a DropDownList using jQuery?
As the question says, how do I add a new option to a DropDownList using jQuery?
Thanks
42
votes
10answers
25k views
Android: Clickable hyperlinks in AlertDialog
What I am trying to accomplish is to have clickable hyperlinks in the message text displayed by an AlertDialog. While the AlertDialog implementation happily underlines and colors any hyperlinks ...
18
votes
7answers
30k views
Update UI from Thread
I want to update my UI from a Thread which updates a Progressbar. Unfortunately, when updating the progressbar's drawable from the "runnable" the progressbar disappears!
Changing the progressbars's ...
2
votes
3answers
3k views
Android Alarm Clock UI
I am trying to figure out how the UI was designed for the Android Alarm Clock app.
This appears to be using the Holo Dark Theme.
The screenshot included is the Create/Edit Alarm Activity screen. ...
77
votes
10answers
32k views
Looking for a MVC Sample for WinForms
Can you point me to a good real-world WinForms MVC application/framework?
I understand the Model part - that's your data, and I know the forms are the views, but what's the controller? Especially ...
19
votes
4answers
13k views
create java console inside the panel
How can I create an instance of the Java console inside of a panel?
146
votes
0answers
85k views
What are good open source GUI SQLite database managers? [closed]
Is there any good open source SQLite database manager around?
I am using sqlitebrowser now but I have to say the interface is not really friendly so I am looking for something better.
3
votes
3answers
712 views
Java swing JComponent “size”
I'm doing a project where i need some custom swing components. So far I have made a new button with a series of images (the Java Metal look doesn't fit with my UI at all). Ive implemented ...
397
votes
16answers
175k views
Git GUI client for Linux [closed]
Which is the best gui client on Linux for Git.
Update: After checking out all of the GUIs mentioned here,
git cola seems to work well for committing/pushing
gitk seem to work the best for ...
181
votes
16answers
70k views
How do I display the current value of an Android Preference in the Preference summary?
This must come up very often.
When the user is editing preferences in an Android app, I'd like them to be able to see the currently set value of the preference in the Preference summary.
Example: if ...
118
votes
6answers
39k views
Difference between a View's Padding and Margin
What is the difference between a View's Margin and Padding?
30
votes
1answer
12k views
More efficient way of updating UI from Service than intents?
I currently have a Service in Android that is a sample VOIP client so it listens out for SIP messages and if it recieves one it starts up an Activity screen with UI components.
Then the following SIP ...
5
votes
5answers
2k views
Way to do content adaptation to mobile
I creating a site and want turn it mobile ready, i see people talking about very very old technology but everything looks walking to an web mobile experience
I see people talking about frameworks] to ...
0
votes
2answers
833 views
Giving JMenuItem's name to it's ActionListener
How can I give my JMenuItems names that the ActionListener attached to them will look at?
I've got a menu system that's handled by a single ActionListener, and some items in those menus duplicate ...
307
votes
13answers
151k views
What GUIs exist for Git on Windows [closed]
I use Subversion via TortoiseSVN but I hear good things about Git.
Are there any similar tools available for Git on Windows?
Feel free to answer with tools which still in early development.
21
votes
11answers
25k views
WinForm UI Validation
I need to implement input validation throughout my winform app. THere are many different forms where data can be entered and I would like to not have to go control by control by form and create ...
15
votes
3answers
11k views
Code a timer in a python GUI in TKinter
I need to code a program with GUI in python (I'm thinking of using TKinter, 'cause it's easy, but I'm open to suggestions).
My major problem is that I don't know how to code a timer (like a clock... ...
1
vote
1answer
2k views
How to setSize of image using RescaleOp
I am writing a test app. To set Alpha for image I use paintComponent method. Watch next snippet...
public class TestImage extends JLabel{
public void paintComponent( Graphics g ) {
...
104
votes
12answers
56k views
Java Swing or Java Qt? [closed]
Can someone with extensive experience with both Qt and Java Swing please discuss whether you would use Swing or Qt under Java, and why?
Secondly, what is the business impact of using Qt? Is it ...
18
votes
3answers
12k views
Grid of images inside ScrollView
I'm trying to create a screen with both text and images. I want the images to be laid out like a grid, as shown below, but I want them to have no scroll functionality other that the one provided by ...
7
votes
4answers
10k views
Custom iPhone Keyboard
I need (i.e. a customer requirement) to provide a custom keyboard for the user to type text into both text fields and areas. I already have something that does the keyboard and appends test to a text ...
13
votes
8answers
2k views
Gui toolkits, which should I use?
I am writing a fairly large and complex data analysis program and I have reached the point where I think it is about time to build a GUI for the program. So my question is:
Which GUI toolkit should I ...
11
votes
15answers
4k views
What Python GUI APIs Are Out There? [closed]
Simple question:
What Python GUI API's are out there and what are the advantages of any given API?
I'm not looking for a religious war here, I'm just wanting to get a good handle on all that is ...
4
votes
3answers
454 views
how to wire one JPane to another JPane
How do I wire output to paneWithList?
PaneWithList has a listener on its JList so that the selected row is output to the console. How can I direct that output to the JTextPane on Output?
could ...
43
votes
16answers
25k views
Best Practices & Principles for GUI design
What is your best practical user-friendly user-interface design or principle?
Please submit those practices that you find actually makes things really useful - no matter what - if it works for your ...
12
votes
7answers
25k views
Blackberry - Loading/Wait screen with animation
Is there a way to show "Loading" screen with animation in blackberry?
Options:
PME animation content
multithreading + set of images + timer/counter
standard rim api
some other way
Any ...
28
votes
1answer
6k views
How can I change the OverScroll color in Android 2.3.1?
Since Android 2.3.1 there is a new feature for ScrollViews and Lists called OverScroll. With
android:overScrollMode="never"
I can turn it off, but if i don't wan't to turn it off how can I change ...