Преглед изворни кода

Added GPL notifications at the top of each file, and made it clear that contributors must agree with it too.

Dalton Nell пре 10 година
родитељ
комит
fa2b624c02
6 измењених фајлова са 96 додато и 3 уклоњено
  1. 1
    1
      license.txt
  2. 19
    0
      main.cpp
  3. 19
    0
      rectangle.cpp
  4. 19
    1
      rectangle.hpp
  5. 19
    0
      x.cpp
  6. 19
    1
      x.hpp

+ 1
- 1
license.txt Прегледај датотеку

@@ -1,4 +1,4 @@
1
-Copyright (C) 2014 Dalton Nell
1
+Copyright (C) 2014 Dalton Nell, Slop Contributors (https://github.com/naelstrof/slop/graphs/contributors)
2 2
 
3 3
 This program is free software: you can redistribute it and/or modify
4 4
 it under the terms of the GNU General Public License as published by

+ 19
- 0
main.cpp Прегледај датотеку

@@ -1,3 +1,22 @@
1
+/* main.cpp
2
+ *
3
+ * Copyright (C) 2014: Dalton Nell, Slop Contributors (https://github.com/naelstrof/slop/graphs/contributors).
4
+ *
5
+ * This file is part of Slop.
6
+ *
7
+ * Slop is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * Slop is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with Slop.  If not, see <http://www.gnu.org/licenses/>.
19
+ */
1 20
 #include <unistd.h>
2 21
 #include <cstdio>
3 22
 #include "x.hpp"

+ 19
- 0
rectangle.cpp Прегледај датотеку

@@ -1,3 +1,22 @@
1
+/* rectangle.cpp: Handles creating rectangles on the screen.
2
+ *
3
+ * Copyright (C) 2014: Dalton Nell, Slop Contributors (https://github.com/naelstrof/slop/graphs/contributors).
4
+ *
5
+ * This file is part of Slop.
6
+ *
7
+ * Slop is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * Slop is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with Slop.  If not, see <http://www.gnu.org/licenses/>.
19
+ */
1 20
 #include "rectangle.hpp"
2 21
 
3 22
 static Bool isDestroyNotify( Display* dpy, XEvent* ev, XPointer win ) {

+ 19
- 1
rectangle.hpp Прегледај датотеку

@@ -1,4 +1,22 @@
1
-// rectangle.hpp: handles creating rectangles on screen.
1
+/* rectangle.hpp: Handles creating rectangles on the screen.
2
+ *
3
+ * Copyright (C) 2014: Dalton Nell, Slop Contributors (https://github.com/naelstrof/slop/graphs/contributors).
4
+ *
5
+ * This file is part of Slop.
6
+ *
7
+ * Slop is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * Slop is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with Slop.  If not, see <http://www.gnu.org/licenses/>.
19
+ */
2 20
 
3 21
 #ifndef IS_RECTANGLE_H_
4 22
 #define IS_RECTANGLE_H_

+ 19
- 0
x.cpp Прегледај датотеку

@@ -1,3 +1,22 @@
1
+/* x.cpp: Handles starting and managing X.
2
+ *
3
+ * Copyright (C) 2014: Dalton Nell, Slop Contributors (https://github.com/naelstrof/slop/graphs/contributors).
4
+ *
5
+ * This file is part of Slop.
6
+ *
7
+ * Slop is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * Slop is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with Slop.  If not, see <http://www.gnu.org/licenses/>.
19
+ */
1 20
 #include "x.hpp"
2 21
 
3 22
 slop::XEngine* xengine = new slop::XEngine();

+ 19
- 1
x.hpp Прегледај датотеку

@@ -1,4 +1,22 @@
1
-// x.hpp: handles starting and managing X
1
+/* x.hpp: Handles starting and managing X.
2
+ *
3
+ * Copyright (C) 2014: Dalton Nell, Slop Contributors (https://github.com/naelstrof/slop/graphs/contributors).
4
+ *
5
+ * This file is part of Slop.
6
+ *
7
+ * Slop is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * Slop is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with Slop.  If not, see <http://www.gnu.org/licenses/>.
19
+ */
2 20
 
3 21
 #ifndef IS_X_H_
4 22
 #define IS_X_H_