Added main touchbar.

This commit is contained in:
23rd 2020-07-08 19:38:30 +03:00 committed by John Preston
parent 2b9cce2f23
commit 199c746216
3 changed files with 87 additions and 0 deletions

View File

@ -901,6 +901,8 @@ PRIVATE
platform/mac/touchbar/mac_touchbar_audio.mm
platform/mac/touchbar/mac_touchbar_common.h
platform/mac/touchbar/mac_touchbar_common.mm
platform/mac/touchbar/mac_touchbar_main.h
platform/mac/touchbar/mac_touchbar_main.mm
platform/win/audio_win.cpp
platform/win/audio_win.h
platform/win/file_utilities_win.cpp

View File

@ -0,0 +1,28 @@
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#import <AppKit/NSTouchBar.h>
namespace Window {
class Controller;
} // namespace Window
namespace TouchBar::Main {
const auto kPinnedPanelItemIdentifier = @"pinnedPanel";
const auto kPopoverInputItemIdentifier = @"popoverInput";
const auto kPopoverPickerItemIdentifier = @"pickerButtons";
} // namespace TouchBar::Main
API_AVAILABLE(macos(10.12.2))
@interface TouchBarMain : NSTouchBar
- (id)init:(not_null<Window::Controller*>)controller
touchBarSwitches:(rpl::producer<>)touchBarSwitches;
@end

View File

@ -0,0 +1,57 @@
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#include "platform/mac/touchbar/mac_touchbar_main.h"
#include "platform/mac/touchbar/items/mac_formatter_item.h"
#include "platform/mac/touchbar/items/mac_pinned_chats_item.h"
#include "platform/mac/touchbar/items/mac_scrubber_item.h"
#include "platform/mac/touchbar/mac_touchbar_common.h"
#include "window/window_controller.h"
#include "window/window_session_controller.h"
#import <AppKit/NSCustomTouchBarItem.h>
#ifndef OS_OSX
using namespace TouchBar::Main;
#pragma mark - TouchBarMain
@interface TouchBarMain()
@end // @interface TouchBarMain
@implementation TouchBarMain
- (id)init:(not_null<Window::Controller*>)controller
touchBarSwitches:(rpl::producer<>)touchBarSwitches {
self = [super init];
if (!self) {
return self;
}
auto *pin = [[[NSCustomTouchBarItem alloc]
initWithIdentifier:kPinnedPanelItemIdentifier] autorelease];
pin.view = [[[PinnedDialogsPanel alloc]
init:(&controller->sessionController()->session())
destroyEvent:std::move(touchBarSwitches)] autorelease];
auto *sticker = [[[StickerEmojiPopover alloc]
init:controller
identifier:kPopoverPickerItemIdentifier] autorelease];
auto *format = [[[TextFormatPopover alloc]
init:kPopoverInputItemIdentifier] autorelease];
self.templateItems = [NSSet setWithArray:@[pin, sticker, format]];
return self;
}
@end // @implementation TouchBarMain
#endif // OS_OSX