# $Id: Makefile,v 1.47 1999/06/01 02:55:43 billf Exp $ # SUBDIR += archivers SUBDIR += astro SUBDIR += audio SUBDIR += benchmarks SUBDIR += biology SUBDIR += cad SUBDIR += chinese SUBDIR += comms SUBDIR += converters SUBDIR += databases SUBDIR += deskutils SUBDIR += devel SUBDIR += editors SUBDIR += emulators SUBDIR += games SUBDIR += german SUBDIR += graphics SUBDIR += japanese SUBDIR += korean SUBDIR += lang SUBDIR += mail SUBDIR += math SUBDIR += mbone SUBDIR += misc SUBDIR += net SUBDIR += news SUBDIR += palm SUBDIR += print SUBDIR += russian SUBDIR += security SUBDIR += shells SUBDIR += sysutils SUBDIR += textproc SUBDIR += vietnamese SUBDIR += www SUBDIR += x11 SUBDIR += x11-clocks SUBDIR += x11-fm SUBDIR += x11-fonts SUBDIR += x11-toolkits SUBDIR += x11-wm PORTSTOP= yes .include index: @rm -f ${.CURDIR}/INDEX @make ${.CURDIR}/INDEX ${.CURDIR}/INDEX: @echo -n "Generating INDEX - please wait.." @make describe ECHO_MSG="echo > /dev/null" | \ perl ${.CURDIR}/Tools/make_index > ${.CURDIR}/INDEX @echo " Done." print-index: ${.CURDIR}/INDEX @awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nB-deps:\t%s\nR-deps:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9); }' < ${.CURDIR}/INDEX search: ${.CURDIR}/INDEX .if !defined(key) @echo "The search target requires a keyword parameter," @echo "e.g.: \"make search key=somekeyword\"" .else @grep -i "${key}" ${.CURDIR}/INDEX | awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nB-deps:\t%s\nR-deps:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9); }' .endif parallel: ${.CURDIR}/INDEX .for dir in ${SUBDIR} @echo "all:: ${dir}-all" .endfor @sed -e 's/|/.tgz|/' ${.CURDIR}/INDEX | awk -F '|' '{me=$$1; here=$$2; bdep=$$8; rdep=$$9; split(here, tmp, "/"); if (bdep != "") { gsub("$$", ".tgz", bdep); gsub(" ", ".tgz ", bdep); } if (rdep != "") { gsub("$$", ".tgz", rdep); gsub(" ", ".tgz ", rdep); } print tmp[4] "-all:: " me; print me ": " bdep " " rdep; printf("\t@/a/asami/portbuild/scripts/pdispatch /a/asami/portbuild/scripts/portbuild %s %s", me, here); if (bdep != "") printf(" %s", bdep); if (rdep != "") printf(" %s", rdep); printf("\n")}' CVS?= cvs update: .if defined(SUP_UPDATE) .if !defined(PORTSSUPFILE) @${ECHO_MSG} "Error: Please define PORTSSUPFILE before doing make update." @exit 1 .endif @echo "--------------------------------------------------------------" @echo ">>> Running ${SUP}" @echo "--------------------------------------------------------------" @${SUP} ${SUPFLAGS} ${PORTSSUPFILE} .elif defined(CVS_UPDATE) @echo "--------------------------------------------------------------" @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT} @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${CVS} -q update -P -d .else @${ECHO_MSG} "Error: Please define either SUP_UPDATE or CVS_UPDATE first." .endif >log msg
path: root/widgets/table
Commit message (Expand)AuthorAgeFilesLines
* Changed this to match the new EPopupMenu structre.Christopher James Lahey2000-11-071-16/+16
* Made it compile again.Chris Lahey2000-11-041-2/+2
* Turned on proper handling of insert and delete.Christopher James Lahey2000-11-041-1/+1
* Since we insert at the parent->child position, we need to account forNot Zed2000-11-031-39/+117
* Updated these unused glade files to better match the versions in the code.Christopher James Lahey2000-11-035-100/+130
* If we are inserting into the root level, we dont have to search the wholeNot Zed2000-10-271-1/+6
* remove the save_id here, so we don't save state for nodes that no longerChris Toshok2000-10-261-9/+6
* Made the column on the right click and click signals be the model columnChristopher James Lahey2000-10-261-2/+2
* Add "click" to the list of etable signals we proxy.Dan Winship2000-10-262-0/+23
* make ETreeModel opaque, and switch from using g_new0 and g_free forChris Toshok2000-10-252-97/+135
* Destroy the tooltip timeout on object destruction.Christopher James Lahey2000-10-241-1/+8
* Made it so that it doesn't recalculate all the rows if a row is changed,Christopher James Lahey2000-10-222-4/+36
* Made it so that rows inserted with their children nodes already in theChristopher James Lahey2000-10-221-1/+3
* Added e_table_set_state_object which loads the state from the givenChristopher James Lahey2000-10-222-4/+6
* remove timeouts on destroy so they don't try to write to freed dataDan Winship2000-10-201-0/+3
* Switched to saving the version as a double instead of a string.Christopher James Lahey2000-10-191-1/+1
* Fixed ETableFieldChooser row heights a bit.Christopher James Lahey2000-10-194-30/+88
* Make text a different color if !(flags & E_CELL_FOCUSED).Christopher James Lahey2000-10-194-2/+17
* Sped up signal propogation.Christopher James Lahey2000-10-192-2/+52
* Fixed the color of the background rectangle. Made the rectangle start atChristopher James Lahey2000-10-191-0/+16
* Make background color of ETable match the background color of item rows.Christopher James Lahey2000-10-181-1/+1
* Removed an unnecessary glade include file.Christopher James Lahey2000-10-184-1/+29
* Moved the glade file directories.Christopher James Lahey2000-10-181-1/+2
* Reworked some of the height stuff?Christopher James Lahey2000-10-171-14/+12
* Choose a better size for the e-table-header-itemIain Holmes2000-10-171-17/+53
* get the next child before traversing/calling func.Chris Toshok2000-10-161-2/+5
* get rid of ENode type, as everything in it is now in ETreePath, and addChris Toshok2000-10-162-139/+257
* Made it so that ETable won't use a state with 0 columns.Christopher James Lahey2000-10-161-2/+14
* Fixed these to use the new ascending attribute as a boolean instead of anChristopher James Lahey2000-10-145-11/+11
* Added e-table-config-field.lo.Christopher James Lahey2000-10-1411-228/+704
* NULL is not a valid argument to `xmlNewDoc'. Was this code everEttore Perazzoli2000-10-141-1/+3
* Fixed gdk-font refcountingIain Holmes2000-10-132-17/+21
* when there are 0 columns, don't assert.Jeffrey Stedfast2000-10-121-1/+1
* Make saving state work properly.Christopher James Lahey2000-10-121-3/+41
* Fixed the parity on the cursor-mode check.Christopher James Lahey2000-10-111-1/+1
* Changed these to use the default cells.Christopher James Lahey2000-10-116-50/+13
* Example spec file. Not used. Just an example of what you can do.Christopher James Lahey2000-10-111-0/+21
* Changed these to match the new ETable system.Christopher James Lahey2000-10-1119-308/+1292
* Removed the assertion that there must be at least 1 column. No way toNot Zed2000-10-095-2/+108
* Emit the selection/cursor "changed" signals.Jeffrey Stedfast2000-10-051-0/+19
* Select all elements of the etable.Jeffrey Stedfast2000-10-054-0/+67
* Changed to take into account the sort group, if the table has one.xNot Zed2000-10-047-18/+428
* Put in 3 more dialog boxes in these files.Christopher James Lahey2000-10-042-75/+1811
* change/add prototypes and a typedef for ETreePathCompareFunc.Chris Toshok2000-10-032-49/+99
* don't screw things up if we sort a collapsed node.Chris Toshok2000-10-031-2/+5
* nukeChris Toshok2000-10-032-1181/+0
* flip black and gray, the way i intended them to be.Chris Toshok2000-10-032-4/+4
* reinstate file.Chris Toshok2000-10-035-24/+103
* Changed.Christopher James Lahey2000-09-291-0/+0
* New file. Approximate UML description of ETable.Christopher James Lahey2000-09-291-0/+0
* Fudge the location of a click in the tooltip, so that it selects theIain Holmes2000-09-273-10/+38
* drag/drop signals need to be added to the same object that is passed toChris Toshok2000-09-271-9/+9
* add save_state stuff to ETreeModel, and prototypes for the public methods.Chris Toshok2000-09-262-7/+213
* Fix include typo.Ariel Rios2000-09-251-1/+1
* fix sorting - need to update the row_array as well as the actual structureChris Toshok2000-09-251-4/+20
* Typo caused readability problems with ETable.Christopher James Lahey2000-09-211-1/+1
* Moved files, fixed header files and paths - FedericoFederico Mena Quintero2000-09-2064-148/+147
* Fixed e-table #includes so that it would compile.Chris Lahey2000-09-1832-64/+64
* Better calculations for tooltip positionsIain Holmes2000-09-183-10/+16
* Added some missing #includes.Christopher James Lahey2000-09-163-3/+4
* Removed g_printIain Holmes2000-09-161-1/+0
* If the cursor is inside the subcell, call the show_tooltip on it.Iain Holmes2000-09-168-41/+404
* Fix a crash in draw_button.Iain Holmes2000-09-151-2/+2
* typo/compile fixPeter Williams2000-09-151-2/+0
* Fix some crashes Make double clicking on the header dividers automaticallyIain Holmes2000-09-1512-27/+238
* Made bold text calculate widths properly.Christopher James Lahey2000-09-121-17/+42
* Made page up and page down active in the ETable.Christopher James Lahey2000-09-111-3/+44
* Fixed the ETableModel callbacks.Christopher James Lahey2000-09-101-12/+12
* Added base ETableModel functions.Christopher James Lahey2000-09-094-37/+244
* Fixed a leak and a double unref.Christopher James Lahey2000-09-022-3/+1
* new test, a home grown 2 hour hack of a file browser. usesChris Toshok2000-09-012-0/+674
* add signals/prototypes for e_tree_model_node_collapsed andChris Toshok2000-09-012-11/+63
* Made the selection work when shift clicking on the first row of the table.Christopher James Lahey2000-08-311-7/+7
* Fix the tree example so that is doesn't show two sets of expand/unexpandRichard Hult2000-08-311-4/+6
* Make printing of groups work better and make them print headers.Christopher James Lahey2000-08-292-38/+134
* Remove a ton of (hopefully harmless) warnings from the ETable code.Ettore Perazzoli2000-08-283-6/+16
* Added some g_return_if_fails and g_return_val_if_fails.Christopher James Lahey2000-08-264-15/+55
* Fix an off by one error that was causing crashes.Christopher James Lahey2000-08-251-1/+2
* Set default values for all of the signal emissions.Christopher James Lahey2000-08-251-3/+3
* Check for selection->selection being NULL inChristopher James Lahey2000-08-251-0/+3
* Pay attention to the return value from the click signal.Christopher James Lahey2000-08-251-2/+8
* Added a click signal which gets sent if the user hits the left or middleChristopher James Lahey2000-08-258-0/+89
* Forgot to commit thisChris Lahey2000-08-251-2/+2
* Added g_return_if_fails.Christopher James Lahey2000-08-252-3/+134
* Added infrastructure for setting the justification of columns. Still needChristopher James Lahey2000-08-258-11/+54
* Fixed a bug in e_table_subset_variable_increment that causes problems withChristopher James Lahey2000-08-241-2/+2
* remove tree-expanded.xpm and tree-unexpanded.xpm.Chris Toshok2000-08-233-49/+2
* Handle iso-8859-1 keys nicely in e-text and e-table. Other encodings toLauris Kaplinski2000-08-231-2/+15
* Moved drawing of the cell backgrounds from ECell into ETableItem.Christopher James Lahey2000-08-225-30/+23
* Changed UTF-8 handling syntax from char based to byte basedLauris Kaplinski2000-08-221-117/+124
* we can remove nodes with children now.Chris Toshok2000-08-222-5/+52
* pass table, not site as the closure for these drag signals, sinceChris Toshok2000-08-221-2/+2
* Added e_table_selection_model_selected_count.Christopher James Lahey2000-08-212-0/+27
* First step moving to UTF-8 stringsLauris Kaplinski2000-08-202-207/+272
* Made background colors alternate.Christopher James Lahey2000-08-2012-45/+128
* Make right click select if the current row is not selected.Christopher James Lahey2000-08-103-0/+19
* Call our parent's destroy method.Miguel de Icaza2000-08-091-0/+5
* Tag some strings for translation.Miguel de Icaza2000-08-091-15/+15
* Changed e_popup_menu_run call to match the new arguments.Christopher James Lahey2000-08-091-1/+1
* Added functions to convert from view row to model row or from model row toChristopher James Lahey2000-08-06