playersdialogimpl.cc

来自「Dick Board Games是一个为QT, GTK和控制台提供的棋类游戏集(」· CC 代码 · 共 31 行

CC
31
字号
#include "playersdialogimpl.hh"/*  *  Constructs a QPlayersDialogImpl which is a child of 'parent', with the  *  name 'name' and widget flags set to 'f'  * *  The dialog will by default be modeless, unless you set 'modal' to *  TRUE to construct a modal dialog. */QPlayersDialogImpl::QPlayersDialogImpl( QWidget* parent,  const char* name, bool modal, WFlags fl )    : QPlayersDialog( parent, name, modal, fl ){}/*   *  Destroys the object and frees any allocated resources */QPlayersDialogImpl::~QPlayersDialogImpl(){    // no need to delete child widgets, Qt does it all for us}/*  * public slot */void QPlayersDialogImpl::applyChanges(){    qWarning( "QPlayersDialogImpl::applyChanges() not yet implemented!" ); }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?