<div dir="ltr"><br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
   If I delete that QDialogButtonBox, and place OK and Cancel buttons in each<br>
notebook tab, how do I specify their default behaviors? The Properties<br>
Manager does not display any signals and slots for these buttons.<br>
<br>
   A pointer to a reference will be much appreciated.<br><br></blockquote><div> <br></div><div>The class QDialogButtonBox (<a href="http://doc.qt.io/qt-5/qdialogbuttonbox.html">http://doc.qt.io/qt-5/qdialogbuttonbox.html</a>) itself offers signals for clicked(button), accepted() i.e. OK clicked, and rejected(), i.e. Cancel clicked.<br><br></div><div>One could create an instance of QDialogButtonBox within a widget before you add that widget to the tabset.<br><br></div><div>Connect the appropriate signals from the specific QDialogButtonBox instance, to the code within that widget to handle it.<br><br></div><div>I am puzzled that you would have an OK/Cancel choice permanently visible; these are usually part of modal dialogs that you display in response to some user issue.<br><br></div></div></div></div>