source:
trunk/beos/TRInfoWindow.h
@
17
Last change on this file since 17 was 14, checked in by root, 16 years ago | |
---|---|
File size: 375 bytes |
Line | |
---|---|
1 | #ifndef TR_INFO_WIND |
2 | #define TR_INFO_WIND |
3 | |
4 | #include <Box.h> |
5 | #include <Window.h> |
6 | #include <StringView.h> |
7 | |
8 | #include "transmission.h" |
9 | |
10 | class TRInfoWindow : public BWindow { |
11 | public: |
12 | TRInfoWindow(tr_stat_t status); |
13 | ~TRInfoWindow(); |
14 | |
15 | virtual void FrameResized(float width, float height); |
16 | private: |
17 | void StringForFileSize(uint64_t size, BString *str); |
18 | |
19 | BBox *fBox; |
20 | }; |
21 | |
22 | #endif |
Note: See TracBrowser
for help on using the repository browser.