~ubuntu-branches/ubuntu/natty/bluefish/natty-proposed

« back to all changes in this revision

Viewing changes to src/fref.h

  • Committer: Bazaar Package Importer
  • Author(s): Davide Puricelli (evo)
  • Date: 2005-04-23 17:05:18 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050423170518-pb8zi3vg32cm6g04
Tags: 1.0-1
* Acknowledge NMU, thanks Leo; closes: #291222.
* Updated debian/ files, thanks Daniel Leidert. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ---------------------------------------------------------- */
 
2
/* -------------- XML FILE FORMAT --------------------------- */
 
3
/* ---------------------------------------------------------- */
 
4
 
 
5
/* 
 
6
<ref name="MySQL Functions" description="MySQL functions for PHP " case="1">
 
7
 
 
8
<group name="some_function_group">
 
9
  <description>
 
10
     Group description
 
11
  </description>
 
12
      
 
13
        <group name="Groups can be nested">
 
14
           <function ...>
 
15
           </function>
 
16
        </group>
 
17
 
 
18
<function name="mysql_db_query">
 
19
 
 
20
   <description>
 
21
     Function description 
 
22
   </description>
 
23
 
 
24
   <tip>Text shown in a tooltip or hints</tip>
 
25
      
 
26
   <param name="database" title="Database name" required="1" vallist="0" default="" type="string" >
 
27
     <vallist>Values if vallist==1</vallist>
 
28
     Parameter description
 
29
   </param>       
 
30
    
 
31
   <return type="resource">
 
32
     Return value description
 
33
   </return>
 
34
  
 
35
   <dialog title="Dialog title">
 
36
      Text inserted after executing dialog, use params as %0,%1,%2 etc.
 
37
      %_ means "insert only these attributes which are not empty and not 
 
38
                default values" 
 
39
   </dialog>
 
40
   
 
41
   <insert>
 
42
      Text inserted after activating this action
 
43
   </insert>
 
44
   
 
45
   <info title="Title of the info window">    
 
46
     Text shown in the info
 
47
   </info>    
 
48
   
 
49
 </function>
 
50
 
 
51
 <tag name="Table Element">
 
52
 
 
53
   <description>
 
54
       The TABLE element contains all other elements that specify caption, rows, content, and formatting.
 
55
   </description>
 
56
 
 
57
   <tip>Tag tooltip</tip>
 
58
     
 
59
   <attribute name="Border" title="Table border" required="0" vallist="0" default="0">
 
60
      <vallist></vallist>
 
61
          This attribute specifies the width (in pixels only) of the frame around a table (see the Note below for more information about this attribute).
 
62
   </attribute>
 
63
 
 
64
   <dialog title="Dialog title">
 
65
      Text inserted after executing dialog, use params as %0,%1,%2 etc.
 
66
   </dialog>
 
67
   
 
68
   <insert>
 
69
      Text inserted after activating this action
 
70
   </insert>
 
71
   
 
72
   <info title="Title of the info window">    
 
73
     Text shown in the info
 
74
   </info>    
 
75
  
 
76
 </tag>
 
77
   
 
78
</group>
 
79
 
 
80
</ref>
 
81
*/
 
82
 
 
83
#ifndef __FREF_H__
 
84
#define __FREF_H__
 
85
 
 
86
GtkWidget *fref_gui(Tbfwin *bfwin); /* used in gui.c */
 
87
 
 
88
void fref_init(void); /* only used once */
 
89
void fref_cleanup(Tbfwin *bfwin);
 
90
void fref_rescan_dir(const gchar *dir); /* used by rcfile.c */
 
91
 
 
92
#endif /* __FREF_H__ */
 
93
 
 
94