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 "disappeared", till i move the main-window. Can I block the Main-Window while settings-menu opened? Furthermore is there a possibility remove the minimze and maximize buttons of the settings-windows in qml? Thanks in advance!
Qt block ApplicationWindow in Background, if other is in Foreground
942 Views Asked by btzs At
1
There are 1 best solutions below
Related Questions in QT
- C++ template using pointer and non pointer arguments in a QVector
- Using QPointer and QObject::connect with C++11
- qt How to style a QToolBar > QToolButton overflow button?
- Qt - Repeatedly write at beginning of file
- C++ Mongodb driver, not working
- deletion and cleanup of worker thread in Qt crashes
- How to drap item from QTableView to QPushButton?
- get image type from qimage
- C++ QT Getting part from QString
- How to connect a destroyed signal of C++ object from QML?
- How to get shader version from QOpenGLShader?
- Size of Qt QRadioButton able to get smaller, but not larger than default
- error WinSock.h has already been included Boost Windows Qt
- How to call a non-class member function with pointers as parameters with QtConcurrent::run?
- What is the difference between MinGW SEH and MinGW SJLJ?
Related Questions in BACKGROUND
- X3DOM Inline Background skyColor
- CSS background property applied to HTML Input element within Table cell
- Changing background of button every second
- jQuery background animation - better performance
- Starting a ScheduledExecutorService from a servlet with a set of parameters
- Change button background with an action
- How to control multithreaded background jobs in for loop in shell script
- background is not working properly
- Fixed background adjusted to the monitor size
- How to print an ArrayList in processing and how to update the background
- Background image animation not working in Firefox
- How can i add an image as background in Chartjs?
- backgrounds Slideshow, but text scrolling
- Java replacing the background of an image
- Is there a way to override default CSS of HTML5 form validation messages
Related Questions in BLOCK
- Magento custom block. Can't get block's file
- Concrete5 5.7 Block permissions
- Ceph- list object in a RADOS block device
- ASP.net main thread block during long running process
- How to modify multiple elements of a block with BEM CSS
- How To Pass A Twig Output String Into the urlFor() Function
- Coderbytes Letter Changes (Ruby)
- More blocks in Simulink
- Upload form inside Drupal block
- adblock - block one option from select list
- multiple return values in callback blocks
- Is possible to set hadoop blocksize 24 MB?
- How to pass data from the popped model view controller to the previous view controller using Swift language?
- Swift passing uninitialized object to block
- Unsupported field datatype: metadata
Related Questions in APPLICATIONWINDOW
- How to show the hidden application window which hid/minimized by ctrl+h/m on mac
- ApplicationWindow footer width controlled
- QML Application Window moved to no non-viewable area and is no longer able to be moved to viewable area
- qml button not firing, same with MouseArea
- Application window error "Plug-in "org.eclipse.wb.core.ui" was unable to instantiate class"
- QML Dialog positioning in ApplicationWindow
- How to change QML ApplicationWindow Overlay size?
- JFace ApplicationWindow white line at top of Window
- How can I send parent to a new ApplicationWindow
- JFace ApplicationWindow: createContents isn't working
- Setting content orientation changes the dimming effect when popup appears
- How to get the className of activeFocusControl in QML ApplicationWindow
- Qt block ApplicationWindow in Background, if other is in Foreground
- QML: How to hide a Menu item from the ApplicationWindow MenuBar
- SWT windows hierachy and global data
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The term that describes what you need is called Modality. You can set the window modality property, as explained here:
http://qt-project.org/doc/qt-4.8/qt.html#WindowModality-enum
Also, each Qt window has a type property, as explained here:
http://qt-project.org/doc/qt-4.8/qt.html#WindowType-enum
Set the type that fits you most.
As both are regular QObject properties you can set them via QML.