Add copyright headers

pull/1/head
firealarmss 1 year ago
parent 1b04784ad5
commit f8eaec6d69

@ -1,4 +1,23 @@
using System.Threading.Channels; /*
* WhackerLink - WhackerLinkConsoleV2
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2024 Caleb, K4PHP
*
*/
using System.Windows; using System.Windows;
using System.Windows.Controls; using System.Windows.Controls;
using System.Windows.Input; using System.Windows.Input;

@ -1,8 +1,22 @@
using System; /*
using System.Collections.Generic; * WhackerLink - WhackerLinkConsoleV2
using System.Linq; *
using System.Text; * This program is free software: you can redistribute it and/or modify
using System.Threading.Tasks; * it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2024 Caleb, K4PHP
*
*/
namespace WhackerLinkConsoleV2 namespace WhackerLinkConsoleV2
{ {

@ -4,20 +4,17 @@
xmlns:local="clr-namespace:WhackerLinkConsoleV2.Controls" xmlns:local="clr-namespace:WhackerLinkConsoleV2.Controls"
Title="WhackerLinkConsoleV2" Height="600" Width="1000" Background="#1e1e1e"> Title="WhackerLinkConsoleV2" Height="600" Width="1000" Background="#1e1e1e">
<Grid> <Grid>
<!-- Menu Bar -->
<Menu VerticalAlignment="Top" Height="25"> <Menu VerticalAlignment="Top" Height="25">
<MenuItem Header="File"> <MenuItem Header="File">
<MenuItem Header="Open Codeplug" Click="OpenCodeplug_Click"/> <MenuItem Header="Open Codeplug" Click="OpenCodeplug_Click"/>
</MenuItem> </MenuItem>
<MenuItem Header="Edit"> <MenuItem Header="Edit">
<!-- Toggle button for enabling/disabling edit mode -->
<MenuItem Header="Enable Edit Mode" Click="ToggleEditMode_Click"/> <MenuItem Header="Enable Edit Mode" Click="ToggleEditMode_Click"/>
<MenuItem Header="Select Widgets to Display" Click="SelectWidgets_Click"/> <MenuItem Header="Select Widgets to Display" Click="SelectWidgets_Click"/>
<MenuItem Header="Reset Settings" Click="ResetSettings_Click"/> <MenuItem Header="Reset Settings" Click="ResetSettings_Click"/>
</MenuItem> </MenuItem>
</Menu> </Menu>
<!-- Main Layout with Canvas to hold ChannelBoxes -->
<Canvas x:Name="ChannelsCanvas" Margin="0,25,0,0" Background="#1e1e1e" /> <Canvas x:Name="ChannelsCanvas" Margin="0,25,0,0" Background="#1e1e1e" />
</Grid> </Grid>
</Window> </Window>

@ -1,4 +1,24 @@
using Microsoft.Win32; /*
* WhackerLink - WhackerLinkConsoleV2
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2024 Caleb, K4PHP
*
*/
using Microsoft.Win32;
using System; using System;
using System.IO; using System.IO;
using System.Windows; using System.Windows;

@ -1,5 +1,23 @@
using System; /*
using System.Collections.Generic; * WhackerLink - WhackerLinkConsoleV2
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2024 Caleb, K4PHP
*
*/
using System.IO; using System.IO;
using Newtonsoft.Json; using Newtonsoft.Json;

@ -1,4 +1,24 @@
using System.Windows.Controls; /*
* WhackerLink - WhackerLinkConsoleV2
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2024 Caleb, K4PHP
*
*/
using System.Windows.Controls;
namespace WhackerLinkConsoleV2.Controls namespace WhackerLinkConsoleV2.Controls
{ {

@ -1,4 +1,24 @@
using System.Windows; /*
* WhackerLink - WhackerLinkConsoleV2
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright (C) 2024 Caleb, K4PHP
*
*/
using System.Windows;
namespace WhackerLinkConsoleV2 namespace WhackerLinkConsoleV2
{ {

Loading…
Cancel
Save

Powered by TurnKey Linux.