A Graphical User Interface is any kind of visual interface which is capable of displaying more than just fixed-width text. GUIs can display information in the form of images and other abstract graphics, and present interactive controls such as buttons, menus, icons and windows. There's now a Stack ...
2
votes
0answers
20 views
QJsonView: A QWidget-based json explorer for Qt
Abstract
I'm developing applications using Qt which highly make usage of the JSON language to communicate, store and load data of different types. I often need a simple viewer similar to the Firebug ...
1
vote
1answer
118 views
Custom dropdown menu using jQuery
I have written a custom drop down menu handler using jQuery because I felt that the native drop down didn't fit my UI.
I have taking into consideration the native way of going through a drop down box ...
2
votes
1answer
106 views
Python Sudoku GUI
This code implements a data structure for representing a Sudoku board, a very simple algorithm for setting up the board, and a GUI written in tkinter(requires tkinter and tkinter.tix).
...
6
votes
5answers
160 views
Anonymous Classes for Listeners
While working with Android GUI my approach to adding Listeners for GUI elements is usually:
Button helpBt = (Button) findViewById(R.id.help_button);
helpBt.setOnClickListener(new ...
1
vote
0answers
124 views
Implementing a JtabbedPane with detached content pane
I'm working on answering Can I have a JTabbedPane with a JMenuBar?
I've written the Class TabOnlyTabbedPane which extends JTabbedPane so that it only displays the tabs of a JTabbedPane. Instead, when ...
2
votes
2answers
128 views
Anchoring an element to the browser's vertical scrollbar
The problem
I'm trying to position a chosen element so that it's always horizontally aligned against the right-hand side of the page, and vertically aligned with the center of the web browser's ...
2
votes
1answer
170 views
Password generator program
I made a password generator program that generates a password based on your input. Give the program two words (any combination of letters in the english alphabet and the numbers 0-9), a key (a letter ...
0
votes
0answers
38 views
Putting items next to each other
So I want to put some text next to it's lable.
(both of which are text blocks - which are faster than lables as I understand it)
The best way i've found for doing this is a strack panel.
So I have, ...