diff --git a/@overflow/commons/ui/component/index.ts b/@overflow/commons/ui/component/index.ts index 18a3238..e4001f3 100644 --- a/@overflow/commons/ui/component/index.ts +++ b/@overflow/commons/ui/component/index.ts @@ -1,9 +1,14 @@ +import { + AppMenuBarComponent, +} from './menu'; + import { TitleBarComponent, WindowControlsComponent, } from './window'; export const COMPONENTS = [ + AppMenuBarComponent, TitleBarComponent, WindowControlsComponent, ]; diff --git a/@overflow/commons/ui/component/menu/app-menu-bar.component.html b/@overflow/commons/ui/component/menu/app-menu-bar.component.html new file mode 100644 index 0000000..6d633e2 --- /dev/null +++ b/@overflow/commons/ui/component/menu/app-menu-bar.component.html @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/@overflow/commons/ui/component/menu/app-menu-bar.component.ts b/@overflow/commons/ui/component/menu/app-menu-bar.component.ts new file mode 100644 index 0000000..5da573f --- /dev/null +++ b/@overflow/commons/ui/component/menu/app-menu-bar.component.ts @@ -0,0 +1,22 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'of-app-menu-bar', + templateUrl: './app-menu-bar.component.html', +}) +export class AppMenuBarComponent implements OnInit { + + private style: string; + private titleBarClass: string; + private showTopResize: boolean; + private showLeftResize: boolean; + + constructor( + ) { } + + ngOnInit() { + } + + onTitlebarDoubleClick() { + } +} diff --git a/@overflow/commons/ui/component/menu/index.ts b/@overflow/commons/ui/component/menu/index.ts new file mode 100644 index 0000000..bb4fc66 --- /dev/null +++ b/@overflow/commons/ui/component/menu/index.ts @@ -0,0 +1 @@ +export { AppMenuBarComponent } from './app-menu-bar.component'; diff --git a/@overflow/commons/ui/component/window/title-bar.component.html b/@overflow/commons/ui/component/window/title-bar.component.html index ade6459..059dd20 100644 --- a/@overflow/commons/ui/component/window/title-bar.component.html +++ b/@overflow/commons/ui/component/window/title-bar.component.html @@ -8,5 +8,6 @@ 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z" /> + \ No newline at end of file diff --git a/@overflow/commons/ui/component/window/window-controls.component.html b/@overflow/commons/ui/component/window/window-controls.component.html index b35a9fd..fcd17fb 100644 --- a/@overflow/commons/ui/component/window/window-controls.component.html +++ b/@overflow/commons/ui/component/window/window-controls.component.html @@ -1,4 +1,4 @@ - +
- \ No newline at end of file +
\ No newline at end of file