Add descriptions for all .c source files below the file header.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1329 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
251bc58ee2
commit
806dd5be1d
@ -1,3 +1,9 @@
|
|||||||
|
2007-02-24 Nick Treleaven <nick.treleaven@btinternet.com>
|
||||||
|
|
||||||
|
* src/*.c:
|
||||||
|
Add descriptions for all .c source files below the file header.
|
||||||
|
|
||||||
|
|
||||||
2007-02-23 Nick Treleaven <nick.treleaven@btinternet.com>
|
2007-02-23 Nick Treleaven <nick.treleaven@btinternet.com>
|
||||||
|
|
||||||
* src/keyfile.c, src/document.c, src/document.h, src/main.c:
|
* src/keyfile.c, src/document.c, src/document.h, src/main.c:
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* About dialog and credits.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "about.h"
|
#include "about.h"
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Build commands and menu items.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
#include "build.h"
|
#include "build.h"
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Callbacks used by Glade. These are mainly in response to menu item and button events in the
|
||||||
|
* main window. Callbacks not used by Glade should go elsewhere.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* General dialogs.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
|
||||||
#include <gdk/gdkkeysyms.h>
|
#include <gdk/gdkkeysyms.h>
|
||||||
|
@ -21,6 +21,11 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Document related actions: new, save, open, etc.
|
||||||
|
* Also Scintilla search actions.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
|
||||||
#ifdef TIME_WITH_SYS_TIME
|
#ifdef TIME_WITH_SYS_TIME
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Encoding conversion and Byte Order Mark (BOM) handling.
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Modified by the gedit Team, 2002. See the gedit AUTHORS file for a
|
* Modified by the gedit Team, 2002. See the gedit AUTHORS file for a
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Filetype detection, file extensions and filetype menu items.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
6
src/gb.c
6
src/gb.c
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* GTK-Bandit.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
@ -68,7 +72,7 @@ static void create_window(void)
|
|||||||
GtkWidget *button5;
|
GtkWidget *button5;
|
||||||
|
|
||||||
gb_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
gb_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
||||||
gtk_window_set_title(GTK_WINDOW(gb_window), "Happy Eastern!");
|
gtk_window_set_title(GTK_WINDOW(gb_window), "Happy Easter!");
|
||||||
gtk_window_set_resizable(GTK_WINDOW(gb_window), FALSE);
|
gtk_window_set_resizable(GTK_WINDOW(gb_window), FALSE);
|
||||||
gtk_window_set_position(GTK_WINDOW(gb_window), GTK_WIN_POS_CENTER);
|
gtk_window_set_position(GTK_WINDOW(gb_window), GTK_WIN_POS_CENTER);
|
||||||
gtk_window_set_destroy_with_parent(GTK_WINDOW(gb_window), TRUE);
|
gtk_window_set_destroy_with_parent(GTK_WINDOW(gb_window), TRUE);
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Syntax highlighting for the different filetypes, using the Scintilla lexers.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "SciLexer.h"
|
#include "SciLexer.h"
|
||||||
|
@ -20,6 +20,9 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Inline image data.
|
||||||
|
*/
|
||||||
|
|
||||||
/* GdkPixbuf RGBA C-Source image dump */
|
/* GdkPixbuf RGBA C-Source image dump */
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Configurable keyboard shortcuts.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <gdk/gdkkeysyms.h>
|
#include <gdk/gdkkeysyms.h>
|
||||||
|
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* geany.conf preferences file loading and saving.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Program initialization and cleanup.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Message window functions (status, compiler, messages windows).
|
||||||
|
* Also compiler error message parsing and grep file and line parsing.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Notebook tab Drag 'n' Drop reordering and tab management.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
#include "notebook.h"
|
#include "notebook.h"
|
||||||
#include "document.h"
|
#include "document.h"
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Preferences dialog support functions.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Project Management.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -21,6 +21,12 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Callbacks for the Scintilla widget (ScintillaObject).
|
||||||
|
* Most important is the sci-notify callback, handled in on_editor_notification().
|
||||||
|
* This includes auto-indentation, comments, auto-completion, calltips, etc.
|
||||||
|
* Also some general Scintilla-related functions.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -21,6 +21,11 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Wrappers for the SCI_* Scintilla messages.
|
||||||
|
* Originally from the cssed project (http://cssed.sf.net).
|
||||||
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
@ -21,6 +21,11 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Find, Replace, Find in Files dialog related functions.
|
||||||
|
* Note that the basic text find functions are in document.c.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <gdk/gdkkeysyms.h>
|
#include <gdk/gdkkeysyms.h>
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* socket.h - this file is part of Geany, a fast and lightweight IDE
|
* socket.c - this file is part of Geany, a fast and lightweight IDE
|
||||||
*
|
*
|
||||||
* Copyright 2006-2007 Enrico Tröger <enrico.troeger@uvena.de>
|
* Copyright 2006-2007 Enrico Tröger <enrico.troeger@uvena.de>
|
||||||
* Copyright 2006-2007 Nick Treleaven <nick.treleaven@btinternet.com>
|
* Copyright 2006-2007 Nick Treleaven <nick.treleaven@btinternet.com>
|
||||||
@ -21,6 +21,12 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Socket setup and messages handling.
|
||||||
|
* The socket allows detection and messages to be sent to the first running instance of Geany.
|
||||||
|
* Only the first instance loads session files at startup, and opens files from the command-line.
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Little dev doc:
|
* Little dev doc:
|
||||||
* Each command which is sent between two instances (see send_open_command and
|
* Each command which is sent between two instances (see send_open_command and
|
||||||
|
@ -21,6 +21,13 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Tagmanager related convenience functions.
|
||||||
|
* Tagmanager parses tags in the current documents, known as the workspace, plus global tags,
|
||||||
|
* which are lists of tags for each filetype. Global tags are loaded when a document with a
|
||||||
|
* matching filetype is first loaded.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -21,6 +21,11 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Templates to insert into the current document, or filetype templates to create a new
|
||||||
|
* document from.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Miscellaneous code for the Tools menu items.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
|
||||||
#include "support.h"
|
#include "support.h"
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Sidebar related code for the Symbol list and Open files GtkTreeViews.
|
||||||
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* User Interface general utility functions.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
|
||||||
|
@ -21,6 +21,9 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* General utility functions, non-GTK related.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "SciLexer.h"
|
#include "SciLexer.h"
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
@ -21,6 +21,10 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Virtual Terminal Emulation setup and handling code, using the libvte plugin library.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
|
||||||
#ifdef HAVE_VTE
|
#ifdef HAVE_VTE
|
||||||
|
@ -21,8 +21,9 @@
|
|||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
// special functions for the win32 platform
|
* Special functions for the win32 platform, to provide native dialogs.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "geany.h"
|
#include "geany.h"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user