최신 analyzer + 형태소 분석기 합쳐놓음
git-svn-id: svn://192.168.0.12/source@245 8346c931-da38-4b9b-9d4c-e48b93cbd075
This commit is contained in:
40
MorphereAnalyzer/sfilterdlg.h
Normal file
40
MorphereAnalyzer/sfilterdlg.h
Normal file
@@ -0,0 +1,40 @@
|
||||
#ifndef SFILTERDLG_H
|
||||
#define SFILTERDLG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QListWidget>
|
||||
#include <QLineEdit>
|
||||
|
||||
|
||||
class SFilterDlg : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
SFilterDlg();
|
||||
~SFilterDlg();
|
||||
|
||||
int GetSelectGroupID();
|
||||
int GetSelectFilterID();
|
||||
void RefreshFilter(int _nGroup);
|
||||
private :
|
||||
void setWidgets();
|
||||
private :
|
||||
QListWidget *m_plwFilterGroup;
|
||||
QListWidget *m_plwFilter;
|
||||
QLineEdit *m_pleFilterGroup;
|
||||
private slots:
|
||||
void Group_Insert();
|
||||
void Group_Delete();
|
||||
void Group_Modify();
|
||||
void Group_CopyPaste();
|
||||
void Group_Refresh();
|
||||
void Group_Run();
|
||||
void GroupItemChanged(QListWidgetItem *, QListWidgetItem *);
|
||||
void ItemChanged(QListWidgetItem*,QListWidgetItem*);
|
||||
|
||||
void Up();
|
||||
void Down();
|
||||
void Delete();
|
||||
};
|
||||
|
||||
#endif // SFILTERDLG_H
|
||||
Reference in New Issue
Block a user