2 * Copyright 2008 Ralf Schülke, ralf.schuelke@googlemail.com.
3 * Copyright 2014 Haiku, Inc. All rights reserved.
5 * Distributed under the terms of the MIT License.
8 * Ralf Schülke, ralf.schuelke@googlemail.com
9 * John Scipione, jscipione@gmail.com
13 #include "PairsButton.h"
16 // #pragma mark - PairsButton
19 PairsButton::PairsButton(int32 x
, int32 y
, int32 size
, BMessage
* message
)
21 BButton(BRect(x
, y
, x
+ size
, y
+ size
), "pairs button", "?", message
)
23 SetFontSize(size
- 15);
27 PairsButton::~PairsButton()