PageRenderTime 17994ms CodeModel.GetById 65ms RepoModel.GetById 34ms app.codeStats 0ms

/IZWebFileManager/ToolbarImages.cs

http://izwebfilemanager.googlecode.com/
C# | 35 lines | 18 code | 2 blank | 15 comment | 0 complexity | a36504222c6d62ccc18e01b3448008d7 MD5 | raw file
  1. // Copyright (C) 2006 Igor Zelmanovich <izwebfilemanager@gmail.com>
  2. //
  3. // This program is free software; you can redistribute it and/or modify
  4. // it under the terms of the GNU General Public License as published by
  5. // the Free Software Foundation; either version 2 of the License, or
  6. // (at your option) any later version.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Text;
  19. namespace IZ.WebFileManager
  20. {
  21. internal enum ToolbarImages
  22. {
  23. Copy,
  24. Move,
  25. Rename,
  26. Delete,
  27. View,
  28. FolderUp,
  29. Process,
  30. NewFolder,
  31. Refresh,
  32. }
  33. }