Ignore:
Timestamp:
Feb 12, 2000, 7:08:23 PM (26 years ago)
Author:
cbratschi
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/treeview.h

    r2738 r2766  
    1 /* $Id: treeview.h,v 1.6 2000-02-10 18:47:36 cbratschi Exp $ */
     1/* $Id: treeview.h,v 1.7 2000-02-12 18:08:23 cbratschi Exp $ */
    22/*
    33 * Treeview class extra info
     
    1414#define MINIMUM_INDENT 10
    1515#define TV_DEFAULTITEMHEIGHT 16
     16#define TV_REFRESH_DELAY 100     /* 100 ms delay between two refreshes */
    1617#define TVITEM_ALLOC    16      /* default nr of items to allocate at first try */
    1718
     
    4142  RECT      text;
    4243  RECT      expandBox;      /* expand box (+/-) coordinate */
    43   RECT          bitmap;
     44  RECT      bitmap;
    4445  RECT      statebitmap;
     46  BOOL      calculated;
    4547} TREEVIEW_ITEM;
    4648
     
    7173  HTREEITEM     dropItem;       /* handle to item selected by drag cursor */
    7274  HTREEITEM     insertMarkItem; /* item after which insertion mark is placed */
    73   BOOL                  insertBeforeorAfter; /* flag used by TVM_SETINSERTMARK */
     75  BOOL          insertBeforeorAfter; /* flag used by TVM_SETINSERTMARK */
    7476  HIMAGELIST    dragList;       /* Bitmap of dragged item */
    7577  INT           cx,cy;          /* current x/y place in list */
     
    98100#define TV_HSCROLL      0x01    /* treeview too large to fit in window */
    99101#define TV_VSCROLL      0x02    /* (horizontal/vertical) */
    100 #define TV_LDRAG                0x04    /* Lbutton pushed to start drag */
     102#define TV_LDRAG        0x04    /* Lbutton pushed to start drag */
    101103#define TV_LDRAGGING    0x08    /* Lbutton pushed, mouse moved.  */
    102 #define TV_RDRAG                0x10    /* dito Rbutton */
     104#define TV_RDRAG        0x10    /* dito Rbutton */
    103105#define TV_RDRAGGING    0x20
     106#define TV_NOREDRAW     0x40
     107#define TV_CALCALL      0x80
    104108
    105109/* bitflags for infoPtr->timer */
    106110
    107111#define TV_EDIT_TIMER    1
    108 #define TV_EDIT_TIMER_SET 1
     112#define TV_REFRESH_TIMER 2
     113
     114#define TV_EDIT_TIMER_SET    1
     115#define TV_REFRESH_TIMER_SET 2
    109116
    110117
Note: See TracChangeset for help on using the changeset viewer.