16196fd3b7
This is not my code but from ticket #9265 * Made a picture of how it looks, old left andnew right. https://imagebin.ca/v/5wIe6TIMzw4C * Think we have a bug somewhere and don't store the name of the Bluetooth device (shown i the image). * I have made som small changes but other than that it's the same code as in the ticket * Ran the src/tools/checkstyle/checkstyle.py to get som style stuff, probably missed some anyway. Change-Id: Ifeb75c8ad890f541e100cdcf78b394675a48ada9 Reviewed-on: https://review.haiku-os.org/c/haiku/+/3825 Reviewed-by: Fredrik Modéen <fredrik@modeen.se>
45 lines
849 B
C++
45 lines
849 B
C++
/*
|
|
* Copyright 2021, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Tri-Edge AI <triedgeai@gmail.com>
|
|
* Oliver Ruiz Dorantes <oliver.ruiz.dorantes@gmail.com>
|
|
*/
|
|
|
|
#ifndef _CONNECTION_VIEW_H_
|
|
#define _CONNECTION_VIEW_H_
|
|
|
|
#include <Window.h>
|
|
#include <View.h>
|
|
#include <StringView.h>
|
|
#include <GroupLayout.h>
|
|
#include <GroupLayoutBuilder.h>
|
|
#include <Font.h>
|
|
#include <String.h>
|
|
|
|
namespace Bluetooth {
|
|
|
|
class BluetoothIconView;
|
|
|
|
class ConnectionView : public BView {
|
|
public:
|
|
ConnectionView(BRect frame,
|
|
BString device, BString address);
|
|
|
|
void Pulse();
|
|
|
|
private:
|
|
BString strMessage;
|
|
BluetoothIconView* fIcon;
|
|
BStringView* fMessage;
|
|
BStringView* fDeviceLabel;
|
|
BStringView* fDeviceText;
|
|
BStringView* fAddressLabel;
|
|
BStringView* fAddressText;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* _CONNECTION_VIEW_H_ */
|