Questions tagged [graphical-interaction]
23 questions
0
votes
1 answer
Is the movement of the cursor on the screen a result of graphical transformation?
I am occupying myself with image processing right now, to be specific, with geometrical transformation and I was wondering, if the movement of the mouse cursor on the screen, is a result of geometrical transformation which is being calculated by the…

Loeli
- 429
- 1
- 3
- 9
0
votes
0 answers
Qt focus popup window or mainwindow
I would like to have a MainWindow, and from it, open a popup window for showing some information. And I would like to bring to the front the which one I select doint click on some of them. There is a good example in Qt samples, but it is using QML.…

Arritmic
- 474
- 2
- 12
0
votes
2 answers
How to build a nice Android-like user interface for my own application
We are developing a software suite that heavily involves user interaction. We'd like to have a nice touch-based user interface, very similar to that of Android. Are there any libraries or other ways to easily build and use such user interfaces for…

Christian
- 2,214
- 4
- 26
- 37
0
votes
3 answers
Designing a for loop with specifically named items
I often run into this situation when writing code for a GUI and would like to know would be a best-practice way of solving this. The situation is this:
I have a number of identical items on my GUI which have different variable names, i.e. I have 10…

N.M.V.
- 45
- 3
0
votes
0 answers
Install SFML binding to Ada
My OS is Ubuntu. I downloaded the SFML binding to Ada.
However, on this one the way of proceed according to the OS is not described!
Stage by stage, here is what I have done:
1) sudo apt-get install libsfml-dev
2) download the binding here:…

infinite
- 63
- 8
0
votes
2 answers
Overlap Formatting
I have a function isOverlap which tells if two objects overlap, here is the source code:
function isOverlap(idOne,idTwo){
var objOne=$("#"+idOne),
objTwo=$("#"+idTwo),
offsetOne = objOne.offset(),
offsetTwo =…

Zach Saucier
- 24,871
- 12
- 85
- 147
0
votes
4 answers
Stop a loop in java with graphical interface (buttons)
I created a graphic interface in java and 2 buttons.
My aim :
1) When I click on the first button, having a loop in which different tasks are processed (Button "Start"). Between each loop there is a stop of 10 seconds
2) When I click on the second…

user1614914
- 77
- 2
- 7
-1
votes
2 answers
I think I made a mistake with this tkinter widget
So till now I want to make a simple button but it gives me an error screen, what am I doing wrong? Here's my code:
import tkinter as tk
import math
import time
tk = tk.Tk()
tk.geometry()
tk.attributes("-fullscreen", True)
exit_button =…

n0trad3an
- 21
- 6