/* $Id$ Copyright (C) 2003-2009 tooar This file is part of emelFM2. emelFM2 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 3, or (at your option) any later version. emelFM2 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 emelFM2; see the file GPL. If not, see http://www.gnu.org/licenses. */ #ifndef __E2_CL_OPTION_H__ #define __E2_CL_OPTION_H__ #include "emelfm2.h" typedef struct _E2_CommandLineOptions { gchar *pane1_path; //entered string, converted before use to UTF-8 if needed gchar *pane2_path; //ditto gchar *config_dir; //UTF-8 string, no trailing / gchar *trash_dir; //UTF-8 string, always has trailer, typically trailing "Trash/" gchar *encoding; gchar *fallback_encoding; gchar **overrides; #ifdef DEBUG_MESSAGES gint debug_level; #endif gboolean detached; gboolean verbose; gboolean suppress_gtk_log; gboolean ignore_problems; GList *option_overrides; GList *startup_commands; } E2_CommandLineOptions; E2_CommandLineOptions e2_cl_options; //FIXME cleanup when session ends ? void e2_cl_option_process (gint argc, gchar *argv[]); #endif //ndef __E2_CL_OPTION_H__