267 lines
9.8 KiB
C
267 lines
9.8 KiB
C
/*
|
|
* mooutils-misc.h
|
|
*
|
|
* Copyright (C) 2004-2010 by Yevgen Muntyan <emuntyan@users.sourceforge.net>
|
|
*
|
|
* This file is part of medit. medit is free software; you can
|
|
* redistribute it and/or modify it under the terms of the
|
|
* GNU Lesser General Public License as published by the
|
|
* Free Software Foundation; either version 2.1 of the License,
|
|
* or (at your option) any later version.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with medit. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MOO_UTILS_MISC_H
|
|
#define MOO_UTILS_MISC_H
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <mooutils/mooutils-messages.h>
|
|
#include <string.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
gboolean moo_open_url (const char *url);
|
|
gboolean moo_open_email (const char *address,
|
|
const char *subject,
|
|
const char *body);
|
|
gboolean moo_open_file (const char *path);
|
|
|
|
void moo_window_present (GtkWindow *window,
|
|
guint32 stamp);
|
|
GtkWindow *_moo_get_top_window (GSList *windows);
|
|
|
|
void _moo_window_set_icon_from_stock (GtkWindow *window,
|
|
const char *name);
|
|
|
|
void moo_log_window_show (void);
|
|
void moo_log_window_hide (void);
|
|
|
|
void moo_set_log_func_window (gboolean show_now);
|
|
void moo_set_log_func_file (const char *log_file);
|
|
void moo_set_log_func_silent (void);
|
|
void moo_reset_log_func (void);
|
|
|
|
void MOO_NORETURN moo_segfault (void);
|
|
void MOO_NORETURN moo_abort (void);
|
|
|
|
G_INLINE_FUNC void
|
|
seriously_ignore_return_value (G_GNUC_UNUSED int v)
|
|
{
|
|
/* gcc guys are funny, casting to void is not enough */
|
|
}
|
|
|
|
G_INLINE_FUNC void
|
|
seriously_ignore_return_value_p (G_GNUC_UNUSED void *p)
|
|
{
|
|
}
|
|
|
|
void moo_disable_win32_error_message (void);
|
|
void moo_enable_win32_error_message (void);
|
|
|
|
void _moo_set_app_instance_name (const char *name);
|
|
void moo_set_user_data_dir (const char *path);
|
|
void moo_set_user_cache_dir (const char *path);
|
|
void moo_set_display_app_name (const char *name);
|
|
const char *moo_get_display_app_name (void);
|
|
|
|
gboolean moo_make_user_data_dir (const char *path);
|
|
char *moo_get_user_data_dir (void);
|
|
char *moo_get_user_data_file (const char *basename);
|
|
char *moo_get_named_user_data_file (const char *basename);
|
|
gboolean moo_save_user_data_file (const char *basename,
|
|
const char *content,
|
|
gssize len,
|
|
GError **error);
|
|
char *moo_get_user_cache_dir (void);
|
|
char *moo_get_user_cache_file (const char *basename);
|
|
gboolean moo_save_user_cache_file (const char *basename,
|
|
const char *content,
|
|
gssize len,
|
|
GError **error);
|
|
gboolean moo_save_config_file (const char *filename,
|
|
const char *content,
|
|
gssize len,
|
|
GError **error);
|
|
|
|
/* user data comes first */
|
|
char **moo_get_data_dirs (void);
|
|
char **moo_get_lib_dirs (void);
|
|
char **moo_get_data_subdirs (const char *subdir);
|
|
char **moo_get_sys_data_subdirs (const char *subdir);
|
|
char **moo_get_lib_subdirs (const char *subdir);
|
|
char **moo_get_data_and_lib_subdirs (const char *subdir);
|
|
|
|
#define moo_get_data_files moo_get_data_subdirs
|
|
#define moo_get_sys_data_files moo_get_sys_data_subdirs
|
|
|
|
gboolean moo_getenv_bool (const char *var);
|
|
|
|
const char *moo_get_locale_dir (void);
|
|
|
|
void moo_selection_data_set_pointer (GtkSelectionData *data,
|
|
GdkAtom type,
|
|
gpointer ptr);
|
|
gpointer moo_selection_data_get_pointer (GtkSelectionData *data,
|
|
GdkAtom type);
|
|
|
|
GdkModifierType _moo_get_modifiers (GtkWidget *widget);
|
|
|
|
void _moo_menu_item_set_accel_label (GtkWidget *menu_item,
|
|
const char *label);
|
|
void _moo_menu_item_set_label (GtkWidget *menu_item,
|
|
const char *label,
|
|
gboolean mnemonic);
|
|
|
|
void _moo_widget_set_tooltip (GtkWidget *widget,
|
|
const char *tip);
|
|
|
|
typedef struct {
|
|
const char *text;
|
|
gsize len;
|
|
} MooLineReader;
|
|
void moo_line_reader_init (MooLineReader *lr,
|
|
const char *text,
|
|
gssize len);
|
|
const char *moo_line_reader_get_line (MooLineReader *lr,
|
|
gsize *line_len,
|
|
gsize *lt_len);
|
|
gboolean moo_find_line_end (const char *string,
|
|
gssize len,
|
|
gsize *le_start,
|
|
gsize *le_len);
|
|
char **moo_strnsplit_lines (const char *string,
|
|
gssize len,
|
|
guint *n_tokens);
|
|
char **moo_splitlines (const char *string);
|
|
|
|
char **_moo_strv_reverse (char **str_array);
|
|
|
|
G_INLINE_FUNC gboolean
|
|
moo_str_equal (const char *s1,
|
|
const char *s2)
|
|
{
|
|
return strcmp (s1 ? s1 : "", s2 ? s2 : "") == 0;
|
|
}
|
|
|
|
G_INLINE_FUNC const char *
|
|
moo_nonnull_str (const char *s)
|
|
{
|
|
return s ? s : "";
|
|
}
|
|
|
|
#define MOO_NZS(s) (moo_nonnull_str (s))
|
|
|
|
G_INLINE_FUNC void
|
|
moo_assign_string (char **where,
|
|
const char *value)
|
|
{
|
|
char *tmp = *where;
|
|
*where = g_strdup (value);
|
|
g_free (tmp);
|
|
}
|
|
|
|
#define MOO_ASSIGN_STRING(where, value) moo_assign_string (&(where), (value))
|
|
|
|
G_INLINE_FUNC void
|
|
moo_assign_strv (char ***where,
|
|
char **value)
|
|
{
|
|
char **tmp = *where;
|
|
*where = g_strdupv (value);
|
|
g_strfreev (tmp);
|
|
}
|
|
|
|
#define MOO_ASSIGN_STRV(where, value) moo_assign_strv (&(where), (value))
|
|
|
|
G_INLINE_FUNC void
|
|
moo_assign_obj (void** dest, void* src)
|
|
{
|
|
if (*dest != src)
|
|
{
|
|
void *tmp = *dest;
|
|
*dest = src;
|
|
if (src)
|
|
g_object_ref (src);
|
|
if (tmp)
|
|
g_object_unref (tmp);
|
|
}
|
|
}
|
|
|
|
#define MOO_ASSIGN_OBJ(dest, src) moo_assign_obj ((void**)&(dest), (src))
|
|
|
|
const char *_moo_get_pid_string (void);
|
|
|
|
guint _moo_io_add_watch (GIOChannel *channel,
|
|
GIOCondition condition,
|
|
GIOFunc func,
|
|
gpointer data);
|
|
guint _moo_io_add_watch_full (GIOChannel *channel,
|
|
int priority,
|
|
GIOCondition condition,
|
|
GIOFunc func,
|
|
gpointer data,
|
|
GDestroyNotify notify);
|
|
|
|
|
|
gboolean _moo_regex_escape (const char *string,
|
|
int bytes,
|
|
GString *dest);
|
|
|
|
const char *moo_error_message (GError *error);
|
|
|
|
gboolean moo_signal_accumulator_continue_cancel (GSignalInvocationHint *ihint,
|
|
GValue *return_accu,
|
|
const GValue *handler_return,
|
|
gpointer val_continue);
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
#ifdef G_OS_WIN32
|
|
#include <gtk/gtk.h>
|
|
#include <string.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
char *moo_win32_get_app_dir (void);
|
|
char *moo_win32_get_dll_dir (const char *dll);
|
|
|
|
void _moo_win32_add_data_dirs (GPtrArray *list,
|
|
const char *prefix);
|
|
|
|
const char *_moo_win32_get_locale_dir (void);
|
|
|
|
gboolean _moo_win32_open_uri (const char *uri);
|
|
void _moo_win32_show_fatal_error (const char *domain,
|
|
const char *logmsg);
|
|
|
|
char **_moo_win32_lame_parse_cmd_line (const char *cmd_line,
|
|
GError **error);
|
|
|
|
int _moo_win32_message_box (GtkWidget *parent,
|
|
guint type,
|
|
const char *title,
|
|
const char *format,
|
|
...) G_GNUC_PRINTF (4, 5);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* G_OS_WIN32 */
|
|
|
|
G_INLINE_FUNC gboolean
|
|
moo_os_win32 (void)
|
|
{
|
|
#ifdef __WIN32__
|
|
return TRUE;
|
|
#else
|
|
return FALSE;
|
|
#endif
|
|
}
|
|
|
|
#endif /* MOO_UTILS_MISC_H */
|