mozart.dart 5.65 KB
Newer Older
1 2 3 4
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
import 'dart:math' as math;

7 8
import 'package:flutter/material.dart';

9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
class LauncherData {
  const LauncherData({ this.url, this.title });
  final String url;
  final String title;
}

const List<LauncherData> _kLauncherData = const <LauncherData>[
  const LauncherData(
    url: 'mojo:noodles_view',
    title: 'Noodles'
  ),
  const LauncherData(
    url: 'mojo:shapes_view',
    title: 'Shapes'
  ),
24 25
];

26 27 28 29 30 31 32 33 34
const Size _kInitialWindowSize = const Size(200.0, 200.0);
const double _kWindowPadding = 10.0;

enum WindowSide {
  topCenter,
  topRight,
  bottomRight,
}

35
class WindowDecoration extends StatelessWidget {
36 37 38 39 40 41 42 43 44 45 46 47 48
  WindowDecoration({
    Key key,
    this.side,
    this.color,
    this.onTap,
    this.onPanUpdate
  }) : super(key: key);

  final WindowSide side;
  final Color color;
  final GestureTapCallback onTap;
  final GesturePanUpdateCallback onPanUpdate;

49
  @override
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
  Widget build(BuildContext context) {
    double top, right, bottom, left, width, height;

    height = _kWindowPadding * 2.0;

    if (side == WindowSide.topCenter || side == WindowSide.topRight)
      top = 0.0;

    if (side == WindowSide.topRight || side == WindowSide.bottomRight) {
      right = 0.0;
      width = _kWindowPadding * 2.0;
    }

    if (side == WindowSide.topCenter) {
      left = _kWindowPadding;
      right = _kWindowPadding;
    }

    if (side == WindowSide.bottomRight)
      bottom = 0.0;

    return new Positioned(
      top: top,
      right: right,
      bottom: bottom,
      left: left,
      width: width,
      height: height,
      child: new GestureDetector(
        onTap: onTap,
        onPanUpdate: onPanUpdate,
        child: new Container(
          decoration: new BoxDecoration(
            backgroundColor: color
          )
        )
      )
    );
  }
}
90

91
class Window extends StatefulWidget {
92
  Window({ Key key, this.child, this.onClose }) : super(key: key);
93 94

  final ChildViewConnection child;
95
  final ValueChanged<ChildViewConnection> onClose;
96

97
  @override
98 99 100 101 102
  _WindowState createState() => new _WindowState();
}

class _WindowState extends State<Window> {
  Offset _offset = Offset.zero;
103
  Size _size = _kInitialWindowSize;
104

105
  void _handleResizerDrag(Offset delta) {
106
    setState(() {
107 108 109 110
      _size = new Size(
        math.max(0.0, _size.width + delta.dx),
        math.max(0.0, _size.height + delta.dy)
      );
111 112 113
    });
  }

114
  void _handleRepositionDrag(Offset delta) {
115
    setState(() {
116
      _offset += delta;
117 118 119
    });
  }

120 121 122 123
  void _handleClose() {
    config.onClose(config.child);
  }

124
  @override
125 126 127 128
  Widget build(BuildContext context) {
    return new Positioned(
      left: _offset.dx,
      top: _offset.dy,
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
      width: _size.width + _kWindowPadding * 2.0,
      height: _size.height + _kWindowPadding * 2.0,
      child: new Stack(
        children: <Widget>[
          new WindowDecoration(
            side: WindowSide.topCenter,
            onPanUpdate: _handleRepositionDrag,
            color: Colors.green[200]
          ),
          new WindowDecoration(
            side: WindowSide.topRight,
            onTap: _handleClose,
            color: Colors.red[200]
          ),
          new WindowDecoration(
            side: WindowSide.bottomRight,
            onPanUpdate: _handleResizerDrag,
            color: Colors.blue[200]
          ),
          new Container(
149
            padding: const EdgeInsets.all(_kWindowPadding),
150 151 152 153 154 155
            child: new Material(
              elevation: 8,
              child: new ChildView(child: config.child)
            )
          )
        ]
156 157 158 159 160
      )
    );
  }
}

161
class LauncherItem extends StatelessWidget {
162 163 164 165 166 167 168 169 170 171 172
  LauncherItem({
    Key key,
    this.url,
    this.child,
    this.onLaunch
  }) : super(key: key);

  final String url;
  final Widget child;
  final ValueChanged<ChildViewConnection> onLaunch;

173
  @override
174 175 176 177 178 179 180 181
  Widget build(BuildContext context) {
    return new RaisedButton(
      onPressed: () { onLaunch(new ChildViewConnection(url: url)); },
      child: child
    );
  }
}

182
class Launcher extends StatelessWidget {
183 184 185 186
  Launcher({ Key key, this.items }) : super(key: key);

  final List<Widget> items;

187
  @override
188 189
  Widget build(BuildContext context) {
    return new Row(
190
      mainAxisAlignment: MainAxisAlignment.center,
191 192 193 194 195
      children: items
    );
  }
}

196
class WindowManager extends StatefulWidget {
197
  @override
198 199 200 201 202 203
  _WindowManagerState createState() => new _WindowManagerState();
}

class _WindowManagerState extends State<WindowManager> {
  List<ChildViewConnection> _windows = <ChildViewConnection>[];

204
  void _handleLaunch(ChildViewConnection child) {
205
    setState(() {
206 207 208 209 210 211 212
      _windows.add(child);
    });
  }

  void _handleClose(ChildViewConnection child) {
    setState(() {
      _windows.remove(child);
213 214 215
    });
  }

216
  @override
217
  Widget build(BuildContext context) {
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
    return new Material(
      child: new Stack(
        children: <Widget>[
          new Positioned(
            left: 0.0,
            right: 0.0,
            bottom: 0.0,
            child: new Launcher(items: _kLauncherData.map((LauncherData data) {
              return new LauncherItem(
                url: data.url,
                onLaunch: _handleLaunch,
                child: new Text(data.title)
              );
            }).toList())
          )
        ]..addAll(_windows.map((ChildViewConnection child) {
          return new Window(
            key: new ObjectKey(child),
            onClose: _handleClose,
            child: child
          );
        }))
240 241 242 243 244 245 246 247
      )
    );
  }
}

void main() {
  runApp(new MaterialApp(
    title: 'Mozart',
248
    routes: <String, WidgetBuilder>{ '/': (_) => new WindowManager() }
249 250
  ));
}