mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
* Remove accidentally tracked files and unset x flag * Ignore ComicNeue * Unify test tag to `reader` * Trivial destructors * Bump CMAKE_CXX_STANDARD to 14 (#4165)
92 lines
2.2 KiB
C++
92 lines
2.2 KiB
C++
//
|
|
// file RDKitSV.H
|
|
// David Cosgrove
|
|
// AstraZeneca
|
|
//
|
|
// 20th June 2014
|
|
//
|
|
// This is the main class for the program RDKitSV, defining the MainWindow.
|
|
|
|
#ifndef RDKITSV_H
|
|
#define RDKITSV_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <vector>
|
|
|
|
#include <GraphMol/ROMol.h>
|
|
|
|
namespace RDKit {
|
|
class MolSupplier;
|
|
}
|
|
|
|
// ****************************************************************************
|
|
|
|
namespace RDKitSV {
|
|
|
|
class RDKitSVPanel;
|
|
|
|
// ****************************************************************************
|
|
|
|
class RDKitSVMainWindow : public QMainWindow {
|
|
|
|
Q_OBJECT
|
|
|
|
public :
|
|
|
|
RDKitSVMainWindow( int argc , char **argv );
|
|
~RDKitSVMainWindow() = default;
|
|
|
|
typedef enum { SMILES , SDF , UNKNOWN } FILE_TYPE;
|
|
|
|
private :
|
|
|
|
QAction *file_exit_ , *file_read_mols_ , *file_read_smarts_;
|
|
QAction *file_write_left_ , *file_write_right_ , *file_write_smarts_;
|
|
QAction *smarts_match_ , *smarts_edit_ , *smarts_new_;
|
|
|
|
std::vector<RDKit::ROMOL_SPTR> mols_;
|
|
RDKitSV::RDKitSVPanel *left_panel_;
|
|
RDKitSV::RDKitSVPanel *right_panel_;
|
|
|
|
// smarts_ pair contains label and SMARTS string
|
|
std::vector<std::pair<std::string,std::string> > smarts_;
|
|
|
|
QString last_dir_;
|
|
|
|
void build_actions();
|
|
void build_file_actions();
|
|
void build_smarts_actions();
|
|
void build_menubar();
|
|
void build_widget();
|
|
void parse_args( int argc , char **argv );
|
|
|
|
FILE_TYPE get_filetype( const std::string &filename , bool &is_compressed );
|
|
|
|
void read_mols( const std::string &filename );
|
|
void read_smarts( const std::string &filename );
|
|
void write_mols( RDKitSV::RDKitSVPanel &panel ,
|
|
const std::string &filename );
|
|
|
|
void match_smarts( const std::vector<std::pair<std::string,std::string> > &smts );
|
|
std::vector<std::pair<std::string,std::string> > select_smarts( bool multi_select = true );
|
|
void update_smarts( const std::string &new_name , const std::string &new_val );
|
|
|
|
private slots :
|
|
|
|
void slot_exit();
|
|
void slot_read_mols();
|
|
void slot_read_smarts();
|
|
void slot_match_smarts();
|
|
void slot_edit_smarts();
|
|
void slot_new_smarts();
|
|
void slot_write_left_molecules();
|
|
void slot_write_right_molecules();
|
|
void slot_write_smarts();
|
|
|
|
};
|
|
|
|
} // EO namespace RDKitSVMainWindow
|
|
|
|
#endif // RDKITSV_H
|