Questions tagged [applicationwindow]

27 questions
0
votes
1 answer

Setting content orientation changes the dimming effect when popup appears

I have a screen with a popup that's supposed to be displayed when a user inputs an invalid parameter. However, when I deploy the screens to the embedded device, everything appears in landscape mode, clipping a part of the screen. To solve this, I…
Mohammad Ali
  • 117
  • 5
0
votes
1 answer

ApplicationWindow footer width controlled

I'm using ApplicationWindow in main.qml, and using StackLayout to call all the qml windows and navigate through them as needed (e.g. pageOne, pageTwo, ...). As shown in the image below, I created a vertical TabBar which is always present regardless…
Anas AG
  • 87
  • 9
0
votes
0 answers

QML Application Window moved to no non-viewable area and is no longer able to be moved to viewable area

I'm building a qml application, and the application window has the following hints set: Qt.CustomizeWindowHint and Qt.Window. When trying to work on scaling the application on a click and drag that switches the state of the window from…
0
votes
1 answer

How to change QML ApplicationWindow Overlay size?

Since Qt 5.10 it's possible setting up Overlay attached property for the Popup element. There is an example available here https://doc.qt.io/qt-5/qml-qtquick-controls2-overlay.html#modal-attached-prop . It's really useful for cases when there is a…
user3417815
  • 615
  • 6
  • 28
0
votes
1 answer

How to get the className of activeFocusControl in QML ApplicationWindow

I try ApplicationWindow { onActiveFocusControlChanged: { console.log(activeFocusControl) console.log(activeFocusControl.objectName) } } ouput: qml: QQuickTextField(0xa6ec00) //the 'activeFocusControl' qml: …
MrEO
  • 3
  • 1
0
votes
1 answer

Rectangle does not cover the entire ApplicationWindow

A picture speaks better than words (black rectangle in red ApplicationWindow): Notice the red unfilled areas on top and right side. The right side red color may be hard to notice but it is there! I want the rectangle which I have colored in black…
Shuji
  • 624
  • 1
  • 8
  • 24
0
votes
2 answers

Unable to align JLabel component in JPanel to the left of the JPanel it is in

No matter how I set my Bounds for my JLabel, it is always in the same spot. I am using the Window Builder Swing Designer Application window. Here is my code: import java.awt.EventQueue; import javax.swing.JFrame; import javax.swing.JPanel; import…
Jane Poe
  • 125
  • 5
  • 16
0
votes
1 answer

How to show the hidden application window which hid/minimized by ctrl+h/m on mac

How to show/re-display the hidden application window which hided/minimized by ctrl+h/m etc in mac? I just don't like click the application icon on the dock!
Kaiyu Lee
  • 613
  • 7
  • 14
0
votes
0 answers

Rectangle minimum width and height with respect to application window using QML

My problem relates to user interface. I have wrapped a Rectangle (root) inside the ApplicationWindow. The height and width of root rectangle and application window is same.I have designed my complete application inside root rectangle.The problem is…
MJKhan
  • 61
  • 2
  • 7
0
votes
1 answer

Java (JFace Application Window) Setting external label text

I am looking to figure out how to set the text of a label on an external Application Window. What I have: I have two windows so far. The first one is the main application window that will appear when the user starts the program. The second window is…
user2631318
0
votes
0 answers

SWT windows hierachy and global data

After a few time enjoying the help of this site, the time to integrate myself here has come! Well, I'm starting a personal project using java (under Windows 7), and I'm getting started with SWT. After a search of hours, I'm not satisfied with the…
0
votes
1 answer

Qt block ApplicationWindow in Background, if other is in Foreground

I'm working with QtQuick and created a settings-window (ApplicationWindow), which shows after click on the settings button. The problem is, that i can still click on the main-window. The settings-windows just goes behind the main-window and…
btzs
  • 1,048
  • 3
  • 14
  • 17
1
2