⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 todo.h

📁 这是一个用于管理个人事物安排的应用程序
💻 H
字号:
/*
 * Copyright (C) 2002 Philip Blundell <philb@gnu.org>
 *
 * 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.
 */

#ifndef TODO_H
#define TODO_H

#include <sys/time.h>
#include <gtk/gtk.h>
#include <gpe/todo-db.h>

extern GtkWidget *g_draw;
extern GtkWidget *the_notebook;

extern GtkWidget *edit_item (struct todo_item *item,
                             gint initial_category,
                             GtkWindow *parent);

extern void categories_menu (void);
extern void refresh_items (void);

/* screen geometry information */
extern gboolean mode_landscape;
extern gboolean large_screen;

/* list store column definitions */
enum
{
    COL_ICON,
    COL_SUMMARY,
    COL_STRIKETHROUGH,
    COL_DATA,
    COL_STATUS,
    COL_DUE,
    COL_CATEGORY,
    COL_PRIORITY,
    COL_PRIORITY_TEXT,
    NUM_COLUMNS
};

struct menu_map
{
  gchar *string;
  gint value;
};

extern struct menu_map state_map[];

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -