summaryrefslogtreecommitdiffstats
path: root/macosx/HBToolbarBadgedItem.h
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2016-10-05 10:45:50 +0200
committerDamiano Galassi <[email protected]>2016-10-05 10:45:50 +0200
commiteaa2aed959c999467bc8c28cbe7be021785c5723 (patch)
treeddb20c09f6660fbe4864adb5d0f1d9b891b4c29b /macosx/HBToolbarBadgedItem.h
parent136108a7f8eaba02dd0ede50142ee3b93e27efbd (diff)
MacGui: show the queue jobs count on the main window queue toolbar icon.
Diffstat (limited to 'macosx/HBToolbarBadgedItem.h')
-rw-r--r--macosx/HBToolbarBadgedItem.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/macosx/HBToolbarBadgedItem.h b/macosx/HBToolbarBadgedItem.h
new file mode 100644
index 000000000..401918d56
--- /dev/null
+++ b/macosx/HBToolbarBadgedItem.h
@@ -0,0 +1,17 @@
+/* HBToolbarBadgedItem.h
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr/>.
+ It may be used under the terms of the GNU General Public License.
+ */
+
+#import <Cocoa/Cocoa.h>
+
+@interface HBToolbarBadgedItem : NSToolbarItem
+
+@property (nonatomic, copy) NSString *badgeValue;
+
+@property (nonatomic, copy) NSColor *badgeTextColor;
+@property (nonatomic, copy) NSColor *badgeFillColor;
+
+@end