Skip to content

Commit

Permalink
Add licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
ragundo committed Jul 8, 2019
1 parent b356116 commit 32b7cb6
Show file tree
Hide file tree
Showing 28 changed files with 614 additions and 72 deletions.
6 changes: 4 additions & 2 deletions dwarfexplorer/MainWindow.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*
* Copyright 2019 Clement Vuchener
* Copyright 2019 Rafael Agundo
*
* This file is part of qtlabors plugin for DFHack
* This file is part of dearfexplorer plugin for DFHack
* The code is based on Clement Vuchener qtlabors plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
Expand All @@ -19,6 +20,7 @@
*/



#include <cstdint>
#include <DataDefs.h>
#include <Core.h>
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_model.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include <array>
#include <algorithm>
#include <QPixmap>
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_model_array.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include <algorithm>
#include <sstream>
#include <iomanip>
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_model_data_from_structure.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include "../df_model.h"
#include "node.h"
#include <locale>
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_model_data_from_type.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include "../df_model.h"
#include <cctype>

Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_model_data_from_value.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include <cstdint>
#include <DataDefs.h>
#include <Core.h>
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_model_df_array.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include <algorithm>
#include <QListIterator>
#include "../df_model.h"
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_model_pointer.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include <algorithm>
#include <cctype>
#include <QPixmap>
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_model_util.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include "../df_model.h"
#include "node.h"

Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_model_vector.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include <algorithm>
#include <QListIterator>
#include <sstream>
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_proxy_model.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include "df_proxy_model.h"


Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/QtModel/df_proxy_model.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#ifndef DF_PROXY_MODEL_H
#define DF_PROXY_MODEL_H
#include <QSortFilterProxyModel>
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/df_model.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#ifndef DF_MODEL_H
#define DF_MODEL_H
#include <QAbstractItemModel>
Expand Down
22 changes: 21 additions & 1 deletion dwarfexplorer/dfstructure_window.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
#include "dfstructure_window.h"
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#include "dfstructure_window.h"
#include "ui_dfstructure_window.h"
#include "df_model.h"
#include "node.h"
Expand Down
20 changes: 20 additions & 0 deletions dwarfexplorer/dfstructure_window.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/*
* Copyright 2019 Rafael Agundo
*
* This file is part of dearfexplorer plugin for DFHack
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/

#ifndef DFSTRUCTURE_WINDOW_H
#define DFSTRUCTURE_WINDOW_H

Expand Down
Loading

0 comments on commit 32b7cb6

Please sign in to comment.