00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
#ifndef INC_LVWSUMS_HPP
00026
#define INC_LVWSUMS_HPP
00027
00028
00029
00030
#include <wx/wxprec.h>
00031
00032
#ifdef __BORLANDC__
00033
#pragma hdrstop
00034
#endif
00035
00036
#ifndef WX_PRECOMP
00037
00038
#include <wx/wx.h>
00039
#endif
00040
#include <wx/listctrl.h>
00041
#include "sumfile.hpp"
00042
00043
00044
00045 #define LVW_SUMS_NBCOLS 4
00046
00047
00048
00049
00050 class ChecksumsListView :
public wxListView
00051 {
00052
public:
00053
00054
ChecksumsListView();
00055
00056
00057
ChecksumsListView(wxWindow* parent, wxWindowID
id,
00058
SumFile* checksumFile,
00059
const wxPoint& pos = wxDefaultPosition,
00060
const wxSize& size = wxDefaultSize,
00061
long style = wxLC_REPORT,
00062
const wxValidator& validator = wxDefaultValidator,
00063
const wxString& name = wxT(
"checksumslistview"));
00064
00065
00066
virtual ~ChecksumsListView();
00067
00068
00069
void init();
00070
00071
00072
00073
00074
00075
00076 enum SortOrder
00077 {
00078 NONE,
00079 ASCENDING,
00080 DESCENDING,
00081 };
00082
00083
00084 enum Columns
00085 {
00086 FILE_NAME = 0,
00087 DIRECTORY,
00088 CHECKSUM_VALUE,
00089 STATE
00090 };
00091
00092
00093 SortOrder
getSortOrder() const;
00094
00095
00096
void setSortOrder(const SortOrder newSortOrder);
00097
00098
00099
int getColumnToSort() const;
00100
00101
00102
void setColumnToSort(const
int col);
00103
00104
00105
void setColumnToSort(const
int col, const SortOrder newSortOrder);
00106
00107
00108
void sort();
00109
00110 protected:
00111
00112
00113
00114
00115
00116 Columns columns[LVW_SUMS_NBCOLS];
00117
00118
00119
void reformat(Columns oldColumns[LVW_SUMS_NBCOLS]);
00120
00121 public:
00122
00123 static wxString getColumnName(const Columns col);
00124
00125
00126
void getColumns(Columns cols[LVW_SUMS_NBCOLS]);
00127
00128
00129
bool setColumns(Columns newColumns[LVW_SUMS_NBCOLS]);
00130
00131
00132
00133
00134
00135
00136
void selectAll();
00137
00138
00139
void invertSelection();
00140
00141
00142
void reformat();
00143
00144
00145
00146
00147
00148
00149
SumFile* getSumFile() const;
00150
00151
00152
void setSumFile(
SumFile* pSumFile);
00153
00154
00155
void check();
00156
00157
00158
void recompute();
00159
00160 protected:
00161
00162
long addChecksum(const
long key, const wxString& stateMsg);
00163
00164
00165
void setChecksum(
long item, const wxString& stateMsg);
00166
00167
00168
void setChecksumState(
long item, const
ChecksumData::State state, const wxString& msg);
00169
00170
00171
bool isInList(const wxString& fileName);
00172
00173
00174
bool removeFilesInList(wxArrayString& files, wxArrayString* in = NULL);
00175
00176 public:
00177
00178
void removeSelectedChecksums();
00179
00180
00181 wxArrayInt getStates(const
bool onlySelected = false) const;
00182
00183
00184 wxString sumUpStates(const
bool onlySelected = false) const;
00185
00186
00187
00188
00189
00190
void selectFilesToAdd();
00191
00192
00193
void selectDirectoriesToAdd();
00194
00195
00196
void selectMatchingFilesToAdd();
00197
00198
00199
void addFiles(const wxArrayString& files);
00200
00201
00202
void DnDFiles(wxCommandEvent& event);
00203
00204
00205
bool openChecksumFile(const wxFileName& fileName);
00206
00207 protected:
00208 SumFile* sumFile;
00209 SortOrder sortOrder;
00210 int colToSort;
00211
00212 #if defined(__WXMSW__)
00213
00214
void OnContextMenu(wxContextMenuEvent& event);
00215 #else
00216
00217
void OnRightUp(wxMouseEvent& event);
00218 #endif
00219
00220
void ShowContextMenu(const wxPoint& p);
00221
00222
00223
00224
00225
00226
void itpAddFilesClick(wxCommandEvent& event);
00227
00228
void itpAddDirectoriesClick(wxCommandEvent& event);
00229
00230
void itpAddMatchingFilesClick(wxCommandEvent& event);
00231
00232
void itpRemoveClick(wxCommandEvent& event);
00233
00234 enum
00235 {
00236 ITP_FILESADD = wxID_HIGHEST + 1000,
00237 ITP_DIRECTORIESADD,
00238 ITP_ADDMATCHINGFILES,
00239 ITP_REMOVE
00240 };
00241
00242 DECLARE_EVENT_TABLE()
00243
00244 private:
00245 DECLARE_DYNAMIC_CLASS(
ChecksumsListView)
00246
00247
00248 class
ChecksumProgress;
00249 };
00250
00251
00252
00253
00254
00255
00256
00257 BEGIN_DECLARE_EVENT_TYPES()
00258 DECLARE_LOCAL_EVENT_TYPE(EVENT_UPDATE_SUMS_FRAME_TITLE_COMMAND, 11001)
00259 END_DECLARE_EVENT_TYPES()
00260
00261
00262
00263
00264
00265 BEGIN_DECLARE_EVENT_TYPES()
00266 DECLARE_LOCAL_EVENT_TYPE(EVENT_UPDATE_SUMS_FRAME_STATUSBAR_COMMAND, 11002)
00267 END_DECLARE_EVENT_TYPES()
00268
00269
00270
00271
00272 BEGIN_DECLARE_EVENT_TYPES()
00273 DECLARE_LOCAL_EVENT_TYPE(EVENT_OPEN_RECENT_ADD_FILE, 11003)
00274 END_DECLARE_EVENT_TYPES()
00275
00276
00277 #endif