make annotations so that lxr happily ndisplays the file contents

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3302 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2000-12-13 21:57:33 +00:00
parent 667a2a1808
commit baa7c158a9
25 changed files with 54 additions and 1 deletions

View File

@ -1,4 +1,6 @@
/********************************************************************\
* basiccell.c -- base class for editable cell in a table *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* basiccell.h -- base class for editable cell in a table *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* cellblock.c -- group of cells that act as cursor within a table *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* cellblock.h -- group of cells that act as cursor within a table *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* combocell.h -- combo-box pull-down menu cell *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* datecell.h -- Date entry/handling/display cell *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* gtable.c -- glib -- basic datatype for 2D array of values *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* gtable.h -- glib -- basic datatype for 2D array of values *
* *
* 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 *
@ -27,7 +29,10 @@
/* This is the API for GTables, a datatype for 2-dimensional tables
* with automatic resizing and memory management. */
* with automatic resizing and memory management.
*
* HACK ALERT -- this thing should proably become a part of glib (??)
*/
typedef struct GTable GTable;

View File

@ -1,4 +1,6 @@
/********************************************************************\
* numcell.c -- number handling cell incl. accelarator key support *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* numcell.h -- number handling cell incl. accelarator key support *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* pricecell.c -- price input/display cell *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* pricecell.h -- price input/display cell *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* quickfillcell.c -- autocompletion based on memorized history *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* quickfillcell.h -- autocompletion based on memorized history *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* recncell.c -- reconcile checkbox cell *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* recncell.h -- reconcile checkbox cell *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* splitreg.c -- general ledger object build on top of table object *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* splitreg.h -- general ledger object build on top of table object *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* table-allgui.c -- 2D grid table object, embeds cells for i/o *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* table-allgui.h -- 2D grid table object, embeds cells for i/o *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* table-gnome.c -- implemntation of table object in GNOME *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* table-html.c -- print table as html *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* table-html.h -- print table as html *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* textcell.c -- simple plain-ascii text display/input cell *
* *
* 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 *

View File

@ -1,4 +1,6 @@
/********************************************************************\
* textcell.h -- simple plain-ascii text display/input cell *
* *
* 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 *