source: branches/profile/GENOM/EXP_main.cxx

Last change on this file was 12302, checked in by westram, 10 years ago
  • help updates
    • merged multiple help files referring to 'ARB_NT/Mark species/…' into one
    • added help for 'new window'
    • fix missing 'mark_colors.hlp' (using 'colorize.hlp')
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
1//  ==================================================================== //
2//                                                                       //
3//    File      : EXP_main.cxx                                           //
4//    Purpose   :                                                        //
5//                                                                       //
6//                                                                       //
7//  Coded by Ralf Westram (coder@reallysoft.de) in September 2001        //
8//  Copyright Department of Microbiology (Technical University Munich)   //
9//                                                                       //
10//  Visit our web site at: http://www.arb-home.de/                       //
11//                                                                       //
12//                                                                       //
13//  ==================================================================== //
14
15#include "EXP_local.hxx"
16
17#include <awt.hxx>
18#include <awt_input_mask.hxx>
19#include <aw_awars.hxx>
20#include <aw_window.hxx>
21#include <aw_root.hxx>
22#include <arbdbt.h>
23#include <db_query.h>
24#include <rootAsWin.h>
25
26using namespace std;
27
28static void EXP_species_name_changed_cb(AW_root * /* awr */) {
29}
30
31static void EXP_update_combined_cb(AW_root *awr) {
32    char       *organism   = awr->awar(AWAR_ORGANISM_NAME)->read_string();
33    char       *experiment = awr->awar(AWAR_EXPERIMENT_NAME)->read_string();
34    const char *combined   = GBS_global_string("%s/%s", organism, experiment);
35    awr->awar(AWAR_COMBINED_EXPERIMENT_NAME)->write_string(combined);
36    free(experiment);
37    free(organism);
38}
39
40void EXP_create_awars(AW_root *aw_root, AW_default /* aw_def */, GBDATA *gb_main) {
41    aw_root->awar_string(AWAR_EXPERIMENT_NAME,          "", gb_main)->add_callback((AW_RCB0)EXP_update_combined_cb);
42    aw_root->awar_string(AWAR_PROTEOM_NAME,             "", gb_main);
43    aw_root->awar_string(AWAR_PROTEIN_NAME,             "", gb_main);
44    aw_root->awar_string(AWAR_ORGANISM_NAME,            "", gb_main)->add_callback((AW_RCB0)EXP_update_combined_cb);
45    aw_root->awar_string(AWAR_COMBINED_EXPERIMENT_NAME, "", gb_main);
46    aw_root->awar_string(AWAR_SPECIES_NAME,             "", gb_main)->add_callback((AW_RCB0)EXP_species_name_changed_cb);
47    aw_root->awar_string(AWAR_EXPERIMENT_DEST,          "", gb_main);
48}
49
50// ---------------------------------------
51//      EXP_item_type_species_selector
52
53struct EXP_item_type_species_selector : public awt_item_type_selector {
54    EXP_item_type_species_selector() : awt_item_type_selector(AWT_IT_EXPERIMENT) {}
55    virtual ~EXP_item_type_species_selector() OVERRIDE {}
56
57    virtual const char *get_self_awar() const OVERRIDE {
58        return AWAR_COMBINED_EXPERIMENT_NAME;
59    }
60    virtual size_t get_self_awar_content_length() const OVERRIDE {
61        return 12 + 1 + 40; // species-name+'/'+experiment_name
62    }
63    virtual GBDATA *current(AW_root *root, GBDATA *gb_main) const OVERRIDE { // give the current item
64        char   *species_name    = root->awar(AWAR_ORGANISM_NAME)->read_string();
65        char   *experiment_name = root->awar(AWAR_EXPERIMENT_NAME)->read_string();
66        GBDATA *gb_experiment   = 0;
67
68        if (species_name[0] && experiment_name[0]) {
69            GB_transaction ta(gb_main);
70            GBDATA *gb_species = GBT_find_species(gb_main, species_name);
71            if (gb_species) {
72                gb_experiment = EXP_find_experiment(gb_species, experiment_name);
73            }
74        }
75
76        free(experiment_name);
77        free(species_name);
78
79        return gb_experiment;
80    }
81    virtual const char *getKeyPath() const OVERRIDE { // give the keypath for items
82        return CHANGE_KEY_PATH_EXPERIMENTS;
83    }
84};
85
86static EXP_item_type_species_selector item_type_experiment;
87
88static void EXP_open_mask_window(AW_window *aww, int id, GBDATA *gb_main) {
89    const awt_input_mask_descriptor *descriptor = AWT_look_input_mask(id);
90    exp_assert(descriptor);
91    if (descriptor) {
92        AWT_initialize_input_mask(aww->get_root(), gb_main, &item_type_experiment, descriptor->get_internal_maskname(), descriptor->is_local_mask());
93    }
94}
95
96static void EXP_create_mask_submenu(AW_window_menu_modes *awm, GBDATA *gb_main) {
97    AWT_create_mask_submenu(awm, AWT_IT_EXPERIMENT, EXP_open_mask_window, gb_main);
98}
99
100static AW_window *create_colorize_experiments_window(AW_root *aw_root, AW_CL cl_gb_main) {
101    GBDATA *gb_main = (GBDATA*)cl_gb_main;
102    return QUERY::create_colorize_items_window(aw_root, gb_main, EXP_get_selector());
103}
104
105void EXP_create_experiments_submenu(AW_window_menu_modes *awm, GBDATA *gb_main, bool submenu) {
106    const char *title  = "Experiment";
107    const char *hotkey = "x";
108
109    if (submenu) awm->insert_sub_menu(title, hotkey);
110    else awm->create_menu(title, hotkey, AWM_ALL);
111
112    {
113        awm->insert_menu_topic("experiment_info",   "Experiment information", "i", "experiment_info.hlp",   AWM_ALL, RootAsWindowCallback::simple(EXP_popup_experiment_window, gb_main));
114        awm->insert_menu_topic("experiment_search", "Search and query",       "q", "experiment_search.hlp", AWM_ALL, AW_POPUP, (AW_CL)EXP_create_experiment_query_window, (AW_CL)gb_main);
115
116        EXP_create_mask_submenu(awm, gb_main);
117
118        awm->sep______________();
119        awm->insert_menu_topic("experiment_colors",     "Colors ...",           "C",    "colorize.hlp", AWM_ALL, AW_POPUP,  (AW_CL)create_colorize_experiments_window, (AW_CL)gb_main);
120    }
121    if (submenu) awm->close_sub_menu();
122}
123
Note: See TracBrowser for help on using the repository browser.