コード例 #1
0
ファイル: walletstack.cpp プロジェクト: mybrocoin/mybrocoin
void WalletStack::setEncryptionStatus()
{
    WalletView *walletView = (WalletView*)currentWidget();
    if (walletView) walletView->setEncryptionStatus();
}
コード例 #2
0
ファイル: walletstack.cpp プロジェクト: mybrocoin/mybrocoin
void WalletStack::changePassphrase()
{
    WalletView *walletView = (WalletView*)currentWidget();
    if (walletView) walletView->changePassphrase();
}
コード例 #3
0
ファイル: walletstack.cpp プロジェクト: mybrocoin/mybrocoin
void WalletStack::unlockWallet()
{
    WalletView *walletView = (WalletView*)currentWidget();
    if (walletView) walletView->unlockWallet();
}
コード例 #4
0
ファイル: walletstack.cpp プロジェクト: mybrocoin/mybrocoin
void WalletStack::encryptWallet(bool status)
{
    WalletView *walletView = (WalletView*)currentWidget();
    if (walletView) walletView->encryptWallet(status);
}
コード例 #5
0
ファイル: walletstack.cpp プロジェクト: mybrocoin/mybrocoin
void WalletStack::backupWallet()
{
    WalletView *walletView = (WalletView*)currentWidget();
    if (walletView) walletView->backupWallet();
}
コード例 #6
0
ファイル: actionrepository.cpp プロジェクト: phen89/rtqt
void ActionView::slotCurrentChanged(QAction *action)
{
    // emit only for currently visible
    if (sender() == currentWidget())
        emit currentChanged(action);
}
コード例 #7
0
DataSourceWidget *MainTabWidget::currentDataSource()
{
	return static_cast<DataSourceWidget*>(currentWidget());
}
コード例 #8
0
ファイル: playqueueview.cpp プロジェクト: FCR001/cantata
void PlayQueueView::setFocus()
{
    currentWidget()->setFocus();
}
コード例 #9
0
ファイル: playqueueview.cpp プロジェクト: FCR001/cantata
bool PlayQueueView::hasFocus()
{
    return currentWidget()->hasFocus();
}
コード例 #10
0
ファイル: Workspace.cpp プロジェクト: fluxer/kde-workspace
WorkSheet *Workspace::currentWorkSheet()
{
    return (WorkSheet*)currentWidget();
}
コード例 #11
0
ファイル: playqueueview.cpp プロジェクト: FCR001/cantata
void PlayQueueView::saveConfig()
{
    if (treeView==currentWidget()) {
        treeView->saveHeader();
    }
}
コード例 #12
0
ファイル: Workspace.cpp プロジェクト: fluxer/kde-workspace
void Workspace::exportWorkSheet()
{
  exportWorkSheet( (WorkSheet*)currentWidget() );
}
コード例 #13
0
void ImagePropertiesVersionsTab::writeSettings(KConfigGroup& group)
{
    group.writeEntry(d->configActiveTab, currentWidget() == d->versionsWidget ? "versions" : "filters");

    d->versionsWidget->writeSettings(group);
}
コード例 #14
0
ファイル: walletstack.cpp プロジェクト: glv2/peerunity
void WalletStack::decryptForMinting(bool status)
{
    WalletView *walletView = (WalletView*)currentWidget();
    if (walletView) walletView->decryptForMinting(status);
}
コード例 #15
0
ファイル: wwidgetstack.cpp プロジェクト: Adna1206/mixxx
QSize WWidgetStack::minimumSizeHint() const {
    QWidget* pWidget = currentWidget();
    return pWidget ? pWidget->minimumSizeHint() : QSize();
}
コード例 #16
0
void ByteViewTab::clear()
{
    while (currentWidget()) {
        delete currentWidget();
    }
}
コード例 #17
0
ファイル: actionrepository.cpp プロジェクト: phen89/rtqt
int ActionView::viewMode() const
{
    return currentWidget() == m_actionListView ? IconView : DetailedView;
}
コード例 #18
0
ファイル: walletstack.cpp プロジェクト: mybrocoin/mybrocoin
void WalletStack::gotoVerifyMessageTab(QString addr)
{
    WalletView *walletView = (WalletView*)currentWidget();
    if (walletView) walletView->gotoVerifyMessageTab(addr);
}
コード例 #19
0
ファイル: queuepool.cpp プロジェクト: rickysarraf/digikam
QueueListView* QueuePool::currentQueue() const
{
    return (dynamic_cast<QueueListView*>(currentWidget()));
}
コード例 #20
0
void KexiMobileWidget::showNavigator()
{
    if (currentWidget() != m_navWidget) {
        setCurrentWidget(m_navWidget);
    }
}