| 1 | // Aseprite |
|---|---|
| 2 | // Copyright (C) 2016 David Capello |
| 3 | // |
| 4 | // This program is distributed under the terms of |
| 5 | // the End-User License Agreement for Aseprite. |
| 6 | |
| 7 | #ifndef APP_UI_FILE_LIST_VIEW_H_INCLUDED |
| 8 | #define APP_UI_FILE_LIST_VIEW_H_INCLUDED |
| 9 | #pragma once |
| 10 | |
| 11 | #include "ui/view.h" |
| 12 | |
| 13 | namespace app { |
| 14 | |
| 15 | class FileListView : public ui::View { |
| 16 | public: |
| 17 | FileListView() { } |
| 18 | |
| 19 | private: |
| 20 | void onScrollRegion(ui::ScrollRegionEvent& ev); |
| 21 | }; |
| 22 | |
| 23 | } // namespace app |
| 24 | |
| 25 | #endif |
| 26 |