#include <findtaginfoalgo.h>
Inheritance diagram for FindTaginfoAlgo:
Public Member Functions | |
FindTaginfoAlgo (TrapperDoc *pDoc_, std::set< db_recno_t > &recnoList, AlgoParam *param) | |
void | start () |
Definition at line 6 of file findtaginfoalgo.h.
FindTaginfoAlgo::FindTaginfoAlgo | ( | TrapperDoc * | pDoc_, | |
std::set< db_recno_t > & | recnoList, | |||
AlgoParam * | param | |||
) | [inline] |
void FindTaginfoAlgo::start | ( | ) | [virtual] |
Implements Algo.
Definition at line 15 of file findtaginfoalgo.cc.
References QInputDialog::getText(), and Algo::selectedReads.
00016 { 00017 if ( selectedReads.empty() ) { 00018 return; 00019 } 00020 00021 bool ok; 00022 QString res = QInputDialog::getText ( "Find TagInfo", "Enter tag string:", QLineEdit::Normal, QString::null, &ok ); 00023 00024 00025 if ( ok ) { 00026 // user entered something and pressed OK 00027 } else { 00028 // user pressed Cancel 00029 return; 00030 } 00031 00032 00033 00034 }