diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-10-11 16:43:20 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-10-11 16:43:20 +0800 |
commit | dabe67e33ce6691678fa97bd09d0fed5ee9c2b74 (patch) | |
tree | 74f395a8a6e5565361a6557ea7bf661121c8bc7a /widgets/table | |
parent | 5e48ebd91b5928774bcd842134dd4988fb9cc62f (diff) | |
download | gsoc2013-evolution-dabe67e33ce6691678fa97bd09d0fed5ee9c2b74.tar gsoc2013-evolution-dabe67e33ce6691678fa97bd09d0fed5ee9c2b74.tar.gz gsoc2013-evolution-dabe67e33ce6691678fa97bd09d0fed5ee9c2b74.tar.bz2 gsoc2013-evolution-dabe67e33ce6691678fa97bd09d0fed5ee9c2b74.tar.lz gsoc2013-evolution-dabe67e33ce6691678fa97bd09d0fed5ee9c2b74.tar.xz gsoc2013-evolution-dabe67e33ce6691678fa97bd09d0fed5ee9c2b74.tar.zst gsoc2013-evolution-dabe67e33ce6691678fa97bd09d0fed5ee9c2b74.zip |
Example spec file. Not used. Just an example of what you can do.
2000-10-11 Christopher James Lahey <clahey@helixcode.com>
* spec.xml: Example spec file. Not used. Just an example of what
you can do.
svn path=/trunk/; revision=5839
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/spec.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/widgets/table/spec.xml b/widgets/table/spec.xml new file mode 100644 index 0000000000..a8e524484c --- /dev/null +++ b/widgets/table/spec.xml @@ -0,0 +1,21 @@ +<ETableSpecification no-headers="false" click-to-add="false" + draw-grid="true" cursor-mode="simple" + _click-to-add-message=""> + <ETableColumn model_col="0" _title="Email" expansion="1.0" minimum_width="20" resizable="true" cell="cell_left_just" compare="string"/> + <ETableColumn model_col="1" _title="Full Name" expansion="1.0" minimum_width="20" resizable="true" cell="cell_left_just" compare="string"/> + <ETableColumn model_col="2" _title="Address" expansion="1.0" minimum_width="20" resizable="true" cell="cell_left_just" compare="string"/> + <ETableColumn model_col="3" _title="Phone" expansion="1.0" minimum_width="20" resizable="true" cell="cell_left_just" compare="string"/> + <ETableState> + <column source="0"/> + <column source="3"/> + <column source="1"/> + <column source="2"/> + <grouping> + <group column="2" ascending="true"> + <leaf column="1" ascending="true"/> + </group> + </grouping> + <!-- Column that's been added by hand. Not implemented yet. + <ETableColumn model_col="custom-string" _title="Custom" expansion="1.0" minimum_widgth="20" resizable="true" cell="string" compare="string"/> --> + </ETableState> +</ETableSpecification> |