/[winpt]/trunk/Include/wptCommonCtl.h
ViewVC logotype

Diff of /trunk/Include/wptCommonCtl.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 23 by twoaday, Fri Sep 30 10:10:16 2005 UTC revision 174 by twoaday, Thu Feb 2 08:20:50 2006 UTC
# Line 1  Line 1 
1  /* wptCommonCtl.h - Win32 Imagelist headerfile  /* wptCommonCtl.h - Win32 Imagelist headerfile
2   *      Copyright (C) 2003 Andreas Jobs   *      Copyright (C) 2003 Andreas Jobs
3   *      Copyright (C) 2004, 2005 Timo Schulz   *      Copyright (C) 2004, 2005, 2006 Timo Schulz
4   *   *
5   * This file is part of WinPT.   * This file is part of WinPT.
6   *   *
7   * WinPT is free software; you can redistribute it and/or   * WinPT is free software; you can redistribute it and/or
8   * modify it under the terms of the GNU General Public License   * modify it under the terms of the GNU General Public License
9   * as published by the Free Software Foundation; either version 2   * as published by the Free Software Foundation; either version 2
10   * of the License, or (at your option) any later version.   * of the License, or (at your option) any later version.
11   *     *  
12   * WinPT is distributed in the hope that it will be useful,   * WinPT is distributed in the hope that it will be useful,
13   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * but WITHOUT ANY WARRANTY; without even the implied warranty of
14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   * General Public License for more details.   * General Public License for more details.
16   *   *
17   * You should have received a copy of the GNU General Public License   * You should have received a copy of the GNU General Public License
18   * along with WinPT; if not, write to the Free Software Foundation,   * along with WinPT; if not, write to the Free Software Foundation,
19   * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA   * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20   */   */
21    
22  #ifndef WPT_COMMONCTL_H  #ifndef WPT_COMMONCTL_H
23  #define WPT_COMMONCTL_H  #define WPT_COMMONCTL_H
24    
25  #include <commctrl.h>  #include <commctrl.h>
26    
27  /* Symbol constants for the toolbar. */  /* Symbol constants for the toolbar. */
28  enum {  enum km_sym_tid_t {
29      IMI_KEY_DELETE = 0,      IMI_KEY_NEW=0,  
30      IMI_KEY_PROPS,      IMI_KEY_DELETE,
31      IMI_KEY_SIGN,      IMI_KEY_PROPS,
32      IMI_KEY_IMPORT,      IMI_KEY_SIGN,
33      IMI_KEY_EXPORT,      IMI_KEY_SEARCH,
34      IMI_SORT_UPARROW,      IMI_KEY_FILE_IMPORT,
35      IMI_SORT_DOWNARROW,      IMI_KEY_FILE_EXPORT,
36      IMI_EXIT,      IMI_KEY_IMPORT,
37      IMAGELIST_NUMIMAGES      IMI_KEY_EXPORT,    
38  };      IMI_SORT_UPARROW,
39        IMI_SORT_DOWNARROW,
40  /*-- List View --*/      IMI_EXIT,
41  #define KEYLIST_SORT_DESC 0x8000      IMAGELIST_NUMIMAGES
42    };
43  typedef int (CALLBACK *listview_cmp) (LPARAM lParam1, LPARAM lParam2,  
44                                        LPARAM lParamSort);  /*-- List View --*/
45    #define KEYLIST_SORT_DESC 0x8000
46  /* Listview column. */  
47  struct listview_column_s {  typedef int (CALLBACK *listview_cmp) (LPARAM lParam1, LPARAM lParam2,
48      int pos;                /* position of the column. */                                        LPARAM lParamSort);
49      int width;              /* width of the column. */  
50      char *fieldname;        /* name of the column. */  /* Listview column. */
51  };  struct listview_column_s {
52  typedef struct listview_column_s * listview_column_t;      int pos;                /* position of the column. */
53        int width;              /* width of the column. */
54  /* Listview control context. */      char *fieldname;        /* name of the column. */
55  struct listview_ctrl_s {  };
56      HWND ctrl;          /* the actual listview window. */  typedef struct listview_column_s * listview_column_t;
57      int cols;           /* number of columns. */  
58      int items;          /* number of items. */  /* Listview control context. */
59  };  struct listview_ctrl_s {
60  typedef struct listview_ctrl_s * listview_ctrl_t;      HWND ctrl;          /* the actual listview window. */
61        int cols;           /* number of columns. */
62  int listview_new (listview_ctrl_t *ctx);      int items;          /* number of items. */
63  void listview_release (listview_ctrl_t ctx);      unsigned int ext_chkbox:1;  /* exteneded style: checkboxes. */
64  int listview_add_column (listview_ctrl_t ctx, listview_column_t col);      HIMAGELIST hil;     /* Imagelist context. */
65  int  listview_add_item_pos (listview_ctrl_t ctx, int pos);  };
66  int listview_add_item (listview_ctrl_t ctx, const char *text);  typedef struct listview_ctrl_s * listview_ctrl_t;
67  int listview_add_item2 (listview_ctrl_t ctx, const char * text, void * magic);  
68  void listview_add_sub_item (listview_ctrl_t ctx, int pos, int col,  int listview_new (listview_ctrl_t *ctx);
69                              const char *text);  void listview_release (listview_ctrl_t ctx);
70  int listview_count_items (listview_ctrl_t ctx, int curr_sel);  int listview_add_column (listview_ctrl_t ctx, listview_column_t col);
71  int listview_del_item (listview_ctrl_t ctx, int pos);  int  listview_add_item_pos (listview_ctrl_t ctx, int pos);
72  int listview_del_all (listview_ctrl_t ctx);  int listview_add_item (listview_ctrl_t ctx, const char *text);
73  int listview_get_item_state (listview_ctrl_t ctx, int pos);  int listview_add_item2 (listview_ctrl_t ctx, const char * text, void * magic);
74  void* listview_get_item2 (listview_ctrl_t ctx, int pos);  void listview_add_sub_item (listview_ctrl_t ctx, int pos, int col,
75  int listview_set_item2 (listview_ctrl_t ctx, int pos, void *magic);                              const char *text);
76  int listview_sort_items (listview_ctrl_t ctx, int sortby,  int listview_count_items (listview_ctrl_t ctx, int curr_sel);
77                           listview_cmp sort_cb);  int listview_del_item (listview_ctrl_t ctx, int pos);
78  int listview_get_curr_pos (listview_ctrl_t ctx);  int listview_del_sel_items (listview_ctrl_t ctx);
79  int listview_get_item_text (listview_ctrl_t ctx, int entry, int pos,  int listview_del_all_items (listview_ctrl_t ctx);
80                               char *text, int maxbytes);  int listview_get_item_state (listview_ctrl_t ctx, int pos);
81  void listview_set_ext_style (listview_ctrl_t ctx);  void* listview_get_item2 (listview_ctrl_t ctx, int pos);
82  int listview_set_column_order (listview_ctrl_t ctx, int *array);  int listview_set_item2 (listview_ctrl_t ctx, int pos, void *magic);
83  int listview_del_items (listview_ctrl_t ctx);  int listview_sort_items (listview_ctrl_t ctx, int sortby,
84  void listview_select_all (listview_ctrl_t ctx);                           listview_cmp sort_cb);
85  void listview_select_one (listview_ctrl_t ctx, int pos);  int listview_get_curr_pos (listview_ctrl_t ctx);
86  int listview_find (listview_ctrl_t ctx, const char * str);  int listview_get_item_text (listview_ctrl_t ctx, int entry, int pos,
87  void listview_scroll (listview_ctrl_t ctx, int oldpos, int newpos);                               char *text, int maxbytes);
88    void listview_set_ext_style (listview_ctrl_t ctx);
89  /*-- Image List --*/  void listview_set_chkbox_style (listview_ctrl_t ctx);
90  extern HIMAGELIST glob_imagelist;  int listview_set_column_order (listview_ctrl_t ctx, int *array);
91    int listview_del_items (listview_ctrl_t ctx);
92  int imagelist_load (HWND hwnd);  void listview_select_all (listview_ctrl_t ctx);
93  int imagelist_destroy (void);  void listview_deselect_all (listview_ctrl_t ctx);
94  int imagelist_getindex (int icon);  void listview_select_one (listview_ctrl_t ctx, int pos);
95    int listview_find (listview_ctrl_t ctx, const char * str);
96  #endif /*WPT_COMMONCTL_H*/  void listview_scroll (listview_ctrl_t ctx, int oldpos, int newpos);
97    int listview_del_column (listview_ctrl_t ctx, int pos);
98    int listview_add_item_image (listview_ctrl_t ctx, const char *text, int image);
99    void listview_set_image_list (listview_ctrl_t ctx, HICON *ico, DWORD nicons);
100    
101    /*-- Image List --*/
102    extern HIMAGELIST glob_imagelist;
103    
104    int imagelist_load (HWND hwnd);
105    int imagelist_destroy (void);
106    int imagelist_getindex (int icon);
107    
108    #endif /*WPT_COMMONCTL_H*/

Legend:
Removed from v.23  
changed lines
  Added in v.174

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26