Exemple #1
0
void voxUI::on_wordEditButton_clicked()
{
    if(vWL->filterItems){
        showEditDialog();
        on_wordTableFilter_textChanged(ui->wordTableFilter->text());
    }
}
Exemple #2
0
void KstDataObject::showDialog(bool isNew) {
  if (isNew) {
    QTimer::singleShot(0, this, SLOT(showNewDialog()));
  } else {
    QTimer::singleShot(0, this, SLOT(showEditDialog()));
  }
}
Exemple #3
0
void CDPlayer::mouseDown(const MouseEvent& event)
{
    if (event.eventComponent != &m_configureButton)
        return;

    PopupMenu m;
    m.addItem(1, TRANS("configure channels"));
    m.addItem(2, TRANS("configure appearance"));
    const int result = m.show();

    switch (result)
    {
    case 1:
        configureChannels();
        break;
    case 2:
        showEditDialog();
        break;
    }
}
void repo::gui::RepoDialogUserManager::edit(const QModelIndex &index)
{
    showEditDialog(getUser(index));
}
void repo::gui::RepoDialogUserManager::edit()
{
    showEditDialog(getUser());
}