/* * main-win.h * * Copyright 2009 PCMan * * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ #ifndef __MAIN_WIN_H__ #define __MAIN_WIN_H__ #include #include G_BEGIN_DECLS #define FM_MAIN_WIN_TYPE (fm_main_win_get_type()) #define FM_MAIN_WIN(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),\ FM_MAIN_WIN_TYPE, FmMainWin)) #define FM_MAIN_WIN_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),\ FM_MAIN_WIN_TYPE, FmMainWinClass)) #define IS_FM_MAIN_WIN(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),\ FM_MAIN_WIN_TYPE)) #define IS_FM_MAIN_WIN_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),\ FM_MAIN_WIN_TYPE)) typedef struct _FmMainWin FmMainWin; typedef struct _FmMainWinClass FmMainWinClass; struct _FmMainWin { GtkWindow parent; GtkUIManager* ui; GtkWidget* toolbar; GtkWidget* location; GtkWidget* hpaned; GtkWidget* notebook; GtkWidget* places_view; GtkWidget* folder_view; GtkWidget* statusbar; GtkWidget* vol_status; GtkWidget* bookmarks_menu; GtkWidget* history_menu; GtkWidget* popup; /* */ FmNavHistory* nav_history; GCancellable* vol_status_cancellable; guint statusbar_ctx; guint statusbar_ctx2; FmBookmarks* bookmarks; }; struct _FmMainWinClass { GtkWindowClass parent_class; }; GType fm_main_win_get_type (void); GtkWidget* fm_main_win_new (void); void fm_main_win_chdir(FmMainWin* win, FmPath* path); void fm_main_win_chdir_by_name(FmMainWin* win, const char* path_str); void fm_main_win_chdir_without_history(FmMainWin* win, FmPath* path); gint fm_main_win_add_tab(FmMainWin* win, FmPath* path); FmMainWin* fm_main_win_add_win(FmMainWin* win, FmPath* path); FmMainWin* fm_main_win_get_last_active(); void fm_main_win_open_in_last_active(FmPath* path); G_END_DECLS #endif /* __MAIN-WIN_H__ */