Skip to content

Commit

Permalink
Add copyright and comments, remove font
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorbel1 committed Dec 6, 2023
1 parent 8b37dd7 commit fd46ce6
Show file tree
Hide file tree
Showing 31 changed files with 92 additions and 318 deletions.
2 changes: 1 addition & 1 deletion confapp/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ROHD-HCL Flutter Configuration App

This is a beta web app that allows RTL generation (system verilog) based on the specific configuration.
This is a web app that allows RTL generation (SystemVerilog) based on the specific configuration.

## Widget Tree

Expand Down
202 changes: 0 additions & 202 deletions confapp/fonts/Roboto_Mono/LICENSE.txt

This file was deleted.

77 changes: 0 additions & 77 deletions confapp/fonts/Roboto_Mono/README.txt

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed confapp/fonts/Roboto_Mono/static/RobotoMono-Thin.ttf
Binary file not shown.
Binary file not shown.
8 changes: 8 additions & 0 deletions confapp/lib/app.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// Copyright (C) 2023 Intel Corporation
// SPDX-License-Identifier: BSD-3-Clause
//
// app.dart
// Main app
//
// 2023 December

import 'package:flutter/material.dart';
import 'package:confapp/hcl/hcl.dart';
import 'package:rohd_hcl/rohd_hcl.dart';
Expand Down
8 changes: 8 additions & 0 deletions confapp/lib/hcl/cubit/component_cubit.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// Copyright (C) 2023 Intel Corporation
// SPDX-License-Identifier: BSD-3-Clause
//
// component_cubit.dart
// Implementation of a cubit for Configurators
//
// 2023 December

import 'package:bloc/bloc.dart';
import 'package:rohd_hcl/rohd_hcl.dart';

Expand Down
8 changes: 8 additions & 0 deletions confapp/lib/hcl/cubit/system_verilog_cubit.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// Copyright (C) 2023 Intel Corporation
// SPDX-License-Identifier: BSD-3-Clause
//
// system_verilog_cubit.dart
// Implementation of a cubit for generating verilog
//
// 2023 December

import 'package:bloc/bloc.dart';

enum GenerationState { initial, loading, done }
Expand Down
3 changes: 3 additions & 0 deletions confapp/lib/hcl/hcl.dart
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
// Copyright (C) 2023 Intel Corporation
// SPDX-License-Identifier: BSD-3-Clause

export 'view/hcl_page.dart';
8 changes: 8 additions & 0 deletions confapp/lib/hcl/view/hcl_page.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// Copyright (C) 2023 Intel Corporation
// SPDX-License-Identifier: BSD-3-Clause
//
// hcl_page.dart
// Main page for the app
//
// 2023 December

import 'package:confapp/hcl/cubit/system_verilog_cubit.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
Expand Down
46 changes: 8 additions & 38 deletions confapp/lib/hcl/view/hcl_view.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// Copyright (C) 2023 Intel Corporation
// SPDX-License-Identifier: BSD-3-Clause
//
// hcl_view.dart
// Main view for the app
//
// 2023 December

import 'package:confapp/hcl/view/screen/sidebar_widget.dart';
import 'package:flutter/material.dart';
import 'package:rohd_hcl/rohd_hcl.dart';
Expand Down Expand Up @@ -45,44 +53,6 @@ class _MainPageState extends State<MainPage> {
void selectComponent(componentGenerator) {
textFormField = [];
component = componentGenerator;

// setState(() {
// for (final knobEntry in component.knobs.entries) {
// final knob = knobEntry.value;
// final knobLabel = knobEntry.key;

// textFormField.add(
// const SizedBox(
// height: 16,
// ),
// );

// textFormField.add(
// SizedBox(
// width: 250,
// child: TextFormField(
// key: Key(knobLabel),
// decoration: InputDecoration(
// border: const OutlineInputBorder(),
// labelText: knobLabel,
// ),
// validator: (value) {
// if (value!.isEmpty) {
// return 'Please enter value';
// }
// return null;
// },
// onSaved: (value) {
// if (knob is IntConfigKnob) {
// knob.value = int.parse(value.toString());
// } else {
// knob.value = value ?? '10';
// }
// }),
// ),
// );
// }
// });
}

@override
Expand Down
Loading

0 comments on commit fd46ce6

Please sign in to comment.