non-modal

how to implement non-modal dialog in IOS like this (image attached)?

倾然丶 夕夏残阳落幕 提交于 2019-12-14 02:35:15
问题 Question: How would one best implement non-modal dialog in IOS like this (image attached)? Allow ability to drag move map still and select (long press) another location, which then that detail is populated in the pop-up "non-modal" dialog. Dialog can have ability to "delete" / "add to favourites" etc. To clarify: I'm asking how to implement the dialogs in the image I have marked "Non Modal Popup" so for the iPad/horizontal regular case, I'm highlighting the dialog would be associated with the

How to make QFileDialog not modal in Qt5?

别来无恙 提交于 2019-12-11 09:55:19
问题 In previous versions of Qt we were able to use following constructor of file dialog: QFileDialog(QWidget * parent = 0, const char * name = 0, bool modal = FALSE) So, it looks like it was possible to make non-modal file dialog. But now (in Qt5) we haven't such parameters in constructor. Also QFileDialog ignores setWindowModality(Qt::NonModal); and setModal(false); (I've checked, that if windowModality() == Qt::NonModal && isModal() == false , file dialog window is still modal). Do you have

dojo non-modal dialog

南楼画角 提交于 2019-12-08 17:14:07
问题 Is there a way to create a non-modal dialog window using dojo? jQuery UI supports both modal and non-modal dialog boxes. I am trying to convert a SilverLight application to HTML/javascript and finding it difficult to create non-modal windows using dojo. 回答1: you might try dojox.layout.FloatingPane 回答2: You can set the display of the underlay to 'none', and you will have a non-modal Dialog. To do that, set the class of the Dialog to 'nonModal' (that's just a convention I'm creating right now),

A window that behaves both modally and non-modally

荒凉一梦 提交于 2019-12-06 01:23:06
问题 I want to create a WPF window that behaves as a modal dialogue box while at the same time facilitating selected operations on certain other windows of the same application. An example of this behaviour can be seen in Adobe Photoshop, which offers several dialogues that allow the user to use an eyedropper tool to make selections from an image while disabling virtually all other application features. I'm guessing that the way forward is to create a non-modal, always-on-top dialogue and

How to create a non-modal form but blocking?

◇◆丶佛笑我妖孽 提交于 2019-12-01 00:17:22
Should sound weird, but this is just for my hobby. I would want a (custom) messagebox to pop up with a YesNo buttons which should ideally block the code. But I should be able to click on the parent form so that I can dismiss the message box without having to specifically click on the messagebox buttons (equivalent to clicking No on the message box).. something like this: void Foo() { CustomMsgBox.Show("do you really wanna delete?", CustomMsgBox.Buttons.YesNo); //block the code here, but user should be able to click on form, so that its equivalent to have clicked No; //if clicked No, return; /

How to create a non-modal form but blocking?

大兔子大兔子 提交于 2019-11-30 18:27:14
问题 Should sound weird, but this is just for my hobby. I would want a (custom) messagebox to pop up with a YesNo buttons which should ideally block the code. But I should be able to click on the parent form so that I can dismiss the message box without having to specifically click on the messagebox buttons (equivalent to clicking No on the message box).. something like this: void Foo() { CustomMsgBox.Show("do you really wanna delete?", CustomMsgBox.Buttons.YesNo); //block the code here, but user

WinForms programming - Modal and Non-Modal forms problem

六眼飞鱼酱① 提交于 2019-11-29 04:36:56
I have a problem with modality of the forms under C#.NET. Let's say I have main form #0 (see the image below). This form represents main application form, where user can perform various operations. However, from time to time, there is a need to open additional non-modal form to perform additional main application functionality supporting tasks. Let's say this is form #1 in the image. On this #1 form there might be opened few additional modal forms on top of each other (#2 form in the image), and at the end, there is a progress dialog showing a long operation progress and status, which might

WinForms programming - Modal and Non-Modal forms problem

╄→гoц情女王★ 提交于 2019-11-27 18:45:31
问题 I have a problem with modality of the forms under C#.NET. Let's say I have main form #0 (see the image below). This form represents main application form, where user can perform various operations. However, from time to time, there is a need to open additional non-modal form to perform additional main application functionality supporting tasks. Let's say this is form #1 in the image. On this #1 form there might be opened few additional modal forms on top of each other (#2 form in the image),

Click outside non-modal dialog to close

二次信任 提交于 2019-11-27 15:14:31
问题 Per my previous research, I've been able to figure out how to trigger a live click event on the overlay around a dialog to close the dialog. However, that restricts further development of this dialog feature to being modal. If I set the dialog to non-modal, there is no overlay to trigger the click event. How can I set up the dialog (which is now not modal) to close when I click outside it without using the overlay click event? Here is my dialog and the subsequent live click event that allows