Skip to content
Snippets Groups Projects
Commit 8625aff0 authored by Olivier Langella's avatar Olivier Langella
Browse files

wip : new action menu

parent 3bb23f1e
No related branches found
No related tags found
No related merge requests found
......@@ -30,9 +30,12 @@
ProteinListQactionColumn::ProteinListQactionColumn(ProteinListWindow * parent, ProteinListColumn column):QAction(parent) {
this->setText(ProteinTableModel::getTitle(column));
this->setCheckable(true);
//evalue_action.setChecked(_display_evalue);
//connect(p_action, SIGNAL(toggled(bool)), this, SLOT(showEvalueColumn(bool)));
_column = column;
_p_protein_list_window = parent;
}
ProteinListQactionColumn::~ProteinListQactionColumn()
......
......@@ -44,6 +44,9 @@ public:
explicit ProteinListQactionColumn(ProteinListWindow * parent, ProteinListColumn column);
~ProteinListQactionColumn();
private:
ProteinListWindow * _p_protein_list_window;
ProteinListColumn _column;
};
class ProteinListWindow: public QMainWindow {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment