File: ltrsift.h

package info (click to toggle)
ltrsift 1.0.2-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,172 kB
  • sloc: ansic: 14,200; makefile: 122; sh: 29
file content (66 lines) | stat: -rw-r--r-- 1,888 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
  Copyright (c) 2011-2012 Sascha Kastens <sascha.kastens@studium.uni-hamburg.de>
  Copyright (c) 2011-2012 Center for Bioinformatics, University of Hamburg

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef LTRSIFT_H
#define LTRSIFT_H

#include <gtk/gtk.h>
#include <glib.h>
#include <glib/gstdio.h>
#include <gdk/gdkkeysyms.h>
#include <string.h>
#include "genometools.h"
#include "gtk_blastn_params.h"
#include "gtk_blastn_params_refseq.h"
#include "gtk_label_close.h"
#include "gtk_ltr_assistant.h"
#include "gtk_ltr_families.h"
#include "gtk_ltr_filter.h"
#include "gtk_project_settings.h"
#include "preprocess_stream.h"
#include "script_filter_stream.h"

typedef struct _GUIData GUIData;

struct _GUIData
{
  GtkWidget *menubar;
  GtkWidget *menubar_save;
  GtkWidget *menubar_save_as;
  GtkWidget *menubar_export;
  GtkWidget *menubar_close;
  GtkWidget *menubar_project;
  GtkWidget *menubar_view_columns;
  GtkWidget *vbox;
  GtkWidget *ltrfams;
  GtkWidget *ltrfilt;
  GtkWidget *projset;
  GtkWidget *progressbar;
  GtkWidget *statusbar;
  GtkWidget *main_window;
  GtkWidget *assistant;
  guint statusbar_context_id;
  gchar *style_file;
  GtError *err;
  GtHashmap *refseq_paramsets;
};

gint apply_gui_settings(GUIData *ltrgui);
gint save_gui_settings(GUIData *ltrgui);

#endif