📄 gsegytoolpanel.h
字号:
/* * GTKSEISVIEWUI - Library of interface elements for GSEGYView * * Copyright (C) 2006 Vladimir Bashkardin * * 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 av. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * * Author: Vladimir Bashkardin <vovizmus@users.sourceforge.net> */#ifndef __G_SEGY_TOOL_PANEL_H__#define __G_SEGY_TOOL_PANEL_H__#include <gtk/gtk.h>G_BEGIN_DECLS#define G_SEGY_TYPE_TOOL_PANEL (g_segy_tool_panel_get_type ())#define G_SEGY_TOOL_PANEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_SEGY_TYPE_TOOL_PANEL, GSEGYToolPanel))#define G_SEGY_TOOL_PANEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), G_SEGY_TYPE_TOOL_PANEL, GSEGYToolPanelClass))#define G_SEGY_IS_TOOL_PANEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_SEGY_TYPE_TOOL_PANEL))#define G_SEGY_IS_TOOL_PANEL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), G_SEGY_TYPE_TOOL_PANEL))#define G_SEGY_TOOL_PANEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), G_SEGY_TYPE_TOOL_PANEL, GSEGYToolPanelClass))typedef struct _GSEGYToolPanel GSEGYToolPanel;typedef struct _GSEGYToolPanelClass GSEGYToolPanelClass;struct _GSEGYToolPanel { GObject parent;};struct _GSEGYToolPanelClass { GObjectClass parent_class; guint motion_tool_id; guint magnify_tool_id; guint highlight_tool_id; guint scaling_id; guint fullscreen_id; guint save_image_id; guint color_manager_id; guint properties_id; void (*motion_tool) (GSEGYToolPanel *self); void (*magnify_tool) (GSEGYToolPanel *self); void (*highlight_tool) (GSEGYToolPanel *self); void (*scaling) (GSEGYToolPanel *self); void (*fullscreen) (GSEGYToolPanel *self); void (*save_image) (GSEGYToolPanel *self); void (*color_manager) (GSEGYToolPanel *self); void (*properties) (GSEGYToolPanel *self);};GType g_segy_tool_panel_get_type (void);GSEGYToolPanel* g_segy_tool_panel_new (void);GtkWidget* g_segy_tool_panel_get_main_widget (GSEGYToolPanel *self);G_END_DECLS#endif /* __G_SEGY_TOOL_PANEL_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -