/juce/src/gui/components/filebrowser/juce_FileSearchPathListComponent.h

http://juced.googlecode.com/ · C Header · 132 lines · 49 code · 18 blank · 65 comment · 0 complexity · 5dc748589dbd4d87eced4a9a1cbedf15 MD5 · raw file

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-9 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #ifndef __JUCE_FILESEARCHPATHLISTCOMPONENT_JUCEHEADER__
  19. #define __JUCE_FILESEARCHPATHLISTCOMPONENT_JUCEHEADER__
  20. #include "../controls/juce_ListBox.h"
  21. #include "../buttons/juce_Button.h"
  22. #include "../mouse/juce_FileDragAndDropTarget.h"
  23. #include "../../../io/files/juce_FileSearchPath.h"
  24. //==============================================================================
  25. /**
  26. Shows a set of file paths in a list, allowing them to be added, removed or
  27. re-ordered.
  28. @see FileSearchPath
  29. */
  30. class JUCE_API FileSearchPathListComponent : public Component,
  31. public SettableTooltipClient,
  32. public FileDragAndDropTarget,
  33. private ButtonListener,
  34. private ListBoxModel
  35. {
  36. public:
  37. //==============================================================================
  38. /** Creates an empty FileSearchPathListComponent.
  39. */
  40. FileSearchPathListComponent();
  41. /** Destructor. */
  42. ~FileSearchPathListComponent();
  43. //==============================================================================
  44. /** Returns the path as it is currently shown. */
  45. const FileSearchPath& getPath() const throw() { return path; }
  46. /** Changes the current path. */
  47. void setPath (const FileSearchPath& newPath);
  48. /** Sets a file or directory to be the default starting point for the browser to show.
  49. This is only used if the current file hasn't been set.
  50. */
  51. void setDefaultBrowseTarget (const File& newDefaultDirectory) throw();
  52. /** A set of colour IDs to use to change the colour of various aspects of the label.
  53. These constants can be used either via the Component::setColour(), or LookAndFeel::setColour()
  54. methods.
  55. @see Component::setColour, Component::findColour, LookAndFeel::setColour, LookAndFeel::findColour
  56. */
  57. enum ColourIds
  58. {
  59. backgroundColourId = 0x1004100, /**< The background colour to fill the component with.
  60. Make this transparent if you don't want the background to be filled. */
  61. };
  62. //==============================================================================
  63. /** @internal */
  64. int getNumRows();
  65. /** @internal */
  66. void paintListBoxItem (int rowNumber, Graphics& g, int width, int height, bool rowIsSelected);
  67. /** @internal */
  68. void deleteKeyPressed (int lastRowSelected);
  69. /** @internal */
  70. void returnKeyPressed (int lastRowSelected);
  71. /** @internal */
  72. void listBoxItemDoubleClicked (int row, const MouseEvent&);
  73. /** @internal */
  74. void selectedRowsChanged (int lastRowSelected);
  75. /** @internal */
  76. void resized();
  77. /** @internal */
  78. void paint (Graphics& g);
  79. /** @internal */
  80. bool isInterestedInFileDrag (const StringArray& files);
  81. /** @internal */
  82. void filesDropped (const StringArray& files, int, int);
  83. /** @internal */
  84. void buttonClicked (Button* button);
  85. //==============================================================================
  86. juce_UseDebuggingNewOperator
  87. private:
  88. //==============================================================================
  89. FileSearchPath path;
  90. File defaultBrowseTarget;
  91. ListBox* listBox;
  92. Button* addButton;
  93. Button* removeButton;
  94. Button* changeButton;
  95. Button* upButton;
  96. Button* downButton;
  97. void changed() throw();
  98. void updateButtons() throw();
  99. FileSearchPathListComponent (const FileSearchPathListComponent&);
  100. const FileSearchPathListComponent& operator= (const FileSearchPathListComponent&);
  101. };
  102. #endif // __JUCE_FILESEARCHPATHLISTCOMPONENT_JUCEHEADER__