Explorar el Código

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

Dalton Nell hace 10 años
padre
commit
fa2b624c02
Se han modificado 6 ficheros con 96 adiciones y 3 borrados
  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 Ver fichero

@@ -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 Ver fichero

@@ -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 Ver fichero

@@ -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 Ver fichero

@@ -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 Ver fichero

@@ -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 Ver fichero

@@ -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_