Home
last modified time | relevance | path

Searched refs:m_cancel_button (Results 1 – 17 of 17) sorted by relevance

/dports/mail/emailrelay/emailrelay-1.9/src/gui/
H A Dgdialog.cpp32 m_cancel_button(NULL) , in GDialog()
45 m_cancel_button(NULL) , in GDialog()
62 m_cancel_button = new QPushButton(tr("Cancel")) ; in init()
69 connect( m_cancel_button, SIGNAL(clicked()), this, SLOT(reject()) ) ; in init()
76 m_button_layout->addWidget( m_cancel_button ) ; in init()
181 m_cancel_button->setEnabled(false) ; in pageUpdated()
191 m_cancel_button->setEnabled(true) ; in pageUpdated()
285 m_cancel_button->setEnabled(false); in wait()
H A Dgdialog.h107 QPushButton * m_cancel_button ; variable
/dports/games/supertux2/SuperTux-v0.6.3-Source/src/gui/
H A Ddialog.cpp36 m_cancel_button(-1), in Dialog()
62 m_cancel_button = -1; in clear_buttons()
76 m_cancel_button = static_cast<int>(m_buttons.size() - 1); in add_cancel_button()
178 if (m_cancel_button != -1 && in process_input()
182 on_button_click(m_cancel_button); in process_input()
263 if (m_clear_diags || button == m_cancel_button) in on_button_click()
H A Ddialog.hpp44 int m_cancel_button; member in Dialog
/dports/net/smb4k/smb4k-992987421af68f2695867722b8dc4ca30a4669ec/core/
H A Dsmb4kprofilemanager_p.cpp164 m_cancel_button = buttonBox->addButton(QDialogButtonBox::Cancel); in setupView()
167 m_cancel_button->setShortcut(Qt::Key_Escape); in setupView()
177 connect(m_cancel_button, SIGNAL(clicked()), this, SLOT(reject())); in setupView()
H A Dsmb4khomesshareshandler_p.cpp241 m_cancel_button = buttonBox->addButton(QDialogButtonBox::Cancel); in setupView()
244 m_cancel_button->setShortcut(Qt::Key_Escape); in setupView()
258 connect(m_cancel_button, SIGNAL(clicked()), SLOT(reject())); in setupView()
H A Dsmb4kprofilemanager_p.h82 QPushButton *m_cancel_button; variable
H A Dsmb4ksynchronizer_p.h164 QPushButton *m_cancel_button; variable
H A Dsmb4khomesshareshandler_p.h197 QPushButton *m_cancel_button; variable
H A Dsmb4ksynchronizer_p.cpp684 m_cancel_button = buttonBox->addButton(QDialogButtonBox::Cancel); in Smb4KSynchronizationDialog()
686 m_cancel_button->setShortcut(Qt::Key_Escape); in Smb4KSynchronizationDialog()
736 connect(m_cancel_button, SIGNAL(clicked()), SLOT(slotCancelClicked())); in Smb4KSynchronizationDialog()
/dports/games/springlobby/springlobby-0.180/src/hosting/
H A Dautobalancedialog.cpp65m_cancel_button = new wxButton(this, ID_CANCEL, _("Cancel"), wxDefaultPosition, wxDefaultSize, 0, … in BEGIN_EVENT_TABLE()
66 m_buttons_sizer->Add(m_cancel_button, 0, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); in BEGIN_EVENT_TABLE()
H A Dmmoptionwindows.h37 wxButton* m_cancel_button; variable
H A Dmmoptionwindows.cpp107m_cancel_button = new wxButton( this, ID_CANCEL, _( "Cancel" ), wxDefaultPosition, wxDefaultSize, … in SingleOptionDialog()
108 m_buttons_sizer->Add( m_cancel_button, 0, wxALL | wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL, 5 ); in SingleOptionDialog()
H A Dautobalancedialog.h42 wxButton* m_cancel_button; variable
/dports/games/freeorion/freeorion-0.4.10.2/GG/src/dialogs/
H A DFileDlg.cpp186 m_cancel_button = style->NewButton(style->Translate("Cancel"), m_font, m_color, m_text_color); in CompleteConstruction()
193 AttachChild(m_cancel_button); in CompleteConstruction()
224 m_cancel_button->LeftClickedSignal.connect(boost::bind(&FileDlg::CancelClicked, this)); in CompleteConstruction()
330m_cancel_button->MoveTo(Pt(Width() - (button_width + H_SPACING), Height() - (button_height + V_SPA… in DoLayout()
331 m_cancel_button->Resize(Pt(button_width, button_height)); in DoLayout()
/dports/games/freeorion/freeorion-0.4.10.2/GG/GG/dialogs/
H A DFileDlg.h177 std::shared_ptr<Button> m_cancel_button; variable
/dports/games/freeorion/freeorion-0.4.10.2/UI/
H A DObjectListWnd.cpp1122 std::shared_ptr<GG::Button> m_cancel_button; member in FilterDialog
1212 m_cancel_button = Wnd::Create<CUIButton>(UserString("CANCEL")); in CompleteConstruction()
1216 AttachChild(m_cancel_button); in CompleteConstruction()
1219 m_cancel_button->LeftClickedSignal.connect(boost::bind(&FilterDialog::CancelClicked, this)); in CompleteConstruction()
1225 m_cancel_button->Resize(GG::Pt(button_width, m_cancel_button->MinUsableSize().y)); in CompleteConstruction()
1226 m_cancel_button->MoveTo(button_lr - m_cancel_button->Size()); in CompleteConstruction()
1227 button_lr = button_lr - GG::Pt(m_cancel_button->Width() + GG::X(3), GG::Y0); in CompleteConstruction()