1 /* 2 * Copyright 2021, Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Tri-Edge AI <triedgeai@gmail.com> 7 */ 8 9 #ifndef _BLUETOOTH_ICON_VIEW_H_ 10 #define _BLUETOOTH_ICON_VIEW_H_ 11 12 #include <View.h> 13 #include <Bitmap.h> 14 #include <MimeType.h> 15 #include <IconUtils.h> 16 17 namespace Bluetooth { 18 19 class BluetoothIconView : public BView { 20 public: 21 BluetoothIconView(); 22 ~BluetoothIconView(); 23 24 void Draw(BRect rect); 25 26 private: 27 static BBitmap* fBitmap; 28 static int32 fRefCount; 29 }; 30 31 } 32 33 #endif /* _BLUETOOTH_ICON_VIEW_H_ */ 34