The part of the application that users directly interact with. Use this tag for reviews of code that defines how an application's user interface works and looks.
2
votes
1answer
24 views
Toggle-item inside a Bootstrap dropdown-menu
I have this working code for a toggle-item inside a Bootstrap dropdown-menu. See demo here.
I suspect that it should be possible to improve it :
in order to have a shorter code and avoid all the ...
4
votes
1answer
36 views
Checkbox multiselect user interface
I wrote a small multiple select interface in jQuery, and I'm looking for any feedback on code quality/usability.
It has to do the following:
When check all is checked, all boxes must become checked
...
1
vote
1answer
37 views
Populate dropdown B on selection in dropdown A
On selection from drop-down A (HTML select) I need to populate another "sub"-dropdown with a different list of values. For instance, on selection of country in ...
6
votes
3answers
558 views
Lemonade stand menu program
This is an assignment given in my C++ programming class. I have one main menu with four other menus branching out from it. I would like to make my code as clutter-free as I can, so please review ...
3
votes
2answers
133 views
Making sure user inputs correct type
I have two functions that are used to prompt and recieve input from the user. One is for int and the other is for boolean. They ...
6
votes
2answers
181 views
Testing quicksort user input
I am testing a quicksort implementation. Arrays of random size with random data are passed to quicksort and the return time is averaged out. The user is prompted to enter values for
minimum length ...
6
votes
2answers
156 views
User Interface for Strategy Game
I've been working a strategy game for iOS for a little while, and each time I add functionality to the game model I'm finding myself building a lot of UI code to sync up with it. I believe that my ...
6
votes
1answer
244 views
Interactive slider
Task:
Create an interactive slider that allows the user to view a given image gallery.
Slider controls:
See previous slide
See next slide
Quick navigation through the images / Paging - ...
5
votes
3answers
1k views
Custom iOS chat interface design & functionality
Preamble
So, as most of you have likely also noticed, chat components, at least at a basic level, are becoming very common with lots of apps. I found myself tweaking and redesigning the interface ...
7
votes
1answer
93 views
DRY multiple if statements used to show/hide elements based on slider value
I'm showing and hiding 4 svg paths based on the value of a slider, all is working as expected, but it still feels a little cumbersome. Does anyone know a way to "DRY" it out a little more?
jsFiddle
...
3
votes
2answers
369 views
Custom UI - Seeing which control has focus
I'm trying to make a simple UI to better understand how interfaces and the System.Windows.Forms Controls behave.
Like the above namespace, I will be able to get ...
5
votes
2answers
460 views
Splitting the GUI into smaller classes
I am currently working on a course project and have been assigned to write a GUI. I've written it and it's about 2000 lines of code. It will be bigger when I add the SQL codes and new panels. So, ...
1
vote
1answer
103 views
Extracting Javascript functions
I have this jQuery click handler function that has three jobs:
Set the time interval for the refresh rate
Change the color on the clicked refresh rate selection
Callback the tablesort functions to ...
3
votes
0answers
159 views
Am I handling GUI correctly?
I'm designing a security camera program. Right now, I am just trying to set up the GUI before receiving. I am using Kivy since, in the future, I plan on designing some programs for Android. I really ...
3
votes
0answers
588 views
Is this a good way of making a File Input Control look like it has rounded buttons and a styled textbox?
We have orange rounded buttons as a standard on our site. For our purposes, we switched everything over to use an anchor tag, instead of input type=button. The exception to this was the File Upload ...
1
vote
1answer
598 views
Account-creation program
I just finished a program that is a simple Swing GUI. It takes in user info, such as password and username, turns them into strings, and puts them in a text file called nuserInfo.txt.
I just want ...
2
votes
1answer
76 views
Better way to have output code?
When a user is created, deleted and update the system will give feed back. e.g. User Deleted/Updated/Create success or unsuccessfully, but I'm sure there is a better way to do it than what I have done ...
4
votes
1answer
187 views
Java/Swing GUI code/layout, am I doing this wrong?
I've never done Java GUI's before. After much trouble I've gotten my GUI to look how I want, however it feels as if my code is very inefficient, as if I'm going about this the wrong way?
...
0
votes
1answer
48 views
Optimizing a jquery user interface application
I'm working on a javascript intensive user-interface application. (At least it's intensive for me, it's my first serious javascript project).
I have a few jquery functions going whenever a div is ...
3
votes
1answer
104 views
JavaScript/HTML web application - user interface logic
I am writing a JavaScript/HTML driven web application. For the user interface, I am not completely sure that my JavaScript is 'OK'. Mainly, I switch between "modes" by assigning a placeholder variable ...
5
votes
2answers
5k views
Multiple nested If checks in VBA
The below code is real and in use, but I've modified it to simplify the process/make it easier to explain.
The purpose of this code is to combine data from multiple data sources. All sources are ...
2
votes
2answers
442 views
How to refactor these C#-events or fix this architecture?
I need some second or third eyes to look over this, since right now, the necessary actions to make this work sound just bad and I suppose I am missing something due to a lack of C# experience.
I am ...
3
votes
1answer
805 views
Keeping UI responsive while performing long running task
I recently asked for some advice on the best way to structure my code for a program I was writing. (see this question on Programmers.SE). The solution I was given was quite elegant however I am less ...
3
votes
1answer
1k views
Usability of sliding panels
Is there a better way to do what I'm doing? If not, I'd like just a general review of how I did it and the usability of it (how it works and functions, not artistically how it looks).
Here is the ...
5
votes
1answer
227 views
Wrapper around a Python API for creating user interfaces
I am writing a wrapper around the GeUserArea class of Cinema 4D's Python API to enable creating user interfaces using an object orientated interface.
I've already ...
2
votes
1answer
962 views
wxPython Form Builder - Sizer Automation
Presented for critique are a pair of classes which automate Sizer Creation and Layout in wxPython.
...