Move single LAYOUTs to data driven (#20365)
				
					
				
			This commit is contained in:
		
							parent
							
								
									941e159a28
								
							
						
					
					
						commit
						5bd68e3695
					
				
					 1443 changed files with 45214 additions and 59923 deletions
				
			
		| 
						 | 
				
			
			@ -1,28 +0,0 @@
 | 
			
		|||
/* Copyright 2021 Gareth Edwards
 | 
			
		||||
 *
 | 
			
		||||
 * 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 2 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/>.
 | 
			
		||||
 */
 | 
			
		||||
#pragma once
 | 
			
		||||
 | 
			
		||||
#include "quantum.h"
 | 
			
		||||
 | 
			
		||||
#define LAYOUT( \
 | 
			
		||||
    K000, K001, K002,      K004, K005, K006,       K008, K009, K010,   \
 | 
			
		||||
    K100, K101, K102,      K104, K105, K106,       K108, K109, K110,   \
 | 
			
		||||
    K200, K201, K202,      K204, K205, K206,       K208, K209, K210    \
 | 
			
		||||
    ) { \
 | 
			
		||||
    { K000,   K001,   K002,   KC_NO, K004,   K005,   K006,   KC_NO, K008,   K009,   K010   }, \
 | 
			
		||||
    { K100,   K101,   K102,   KC_NO, K104,   K105,   K106,   KC_NO, K108,   K109,   K110   }, \
 | 
			
		||||
    { K200,   K201,   K202,   KC_NO, K204,   K205,   K206,   KC_NO, K208,   K209,   K210   }, \
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -21,36 +21,42 @@
 | 
			
		|||
    "layouts": {
 | 
			
		||||
        "LAYOUT": {
 | 
			
		||||
            "layout": [
 | 
			
		||||
                {"label":"K00 (D1,D4)", "x":0, "y":0},
 | 
			
		||||
                {"label":"K01 (D1,C6)", "x":1, "y":0},
 | 
			
		||||
                {"label":"K02 (D1,D7)", "x":2, "y":0},
 | 
			
		||||
                {"label":"K04 (D1,B3)", "x":4, "y":0},
 | 
			
		||||
                {"label":"K05 (D1,B2)", "x":5, "y":0},
 | 
			
		||||
                {"label":"K06 (D1,B6)", "x":6, "y":0},
 | 
			
		||||
                {"label":"K08 (D1,E6)", "x":8, "y":0},
 | 
			
		||||
                {"label":"K09 (D1,C4)", "x":9, "y":0},
 | 
			
		||||
                {"label":"K0A (D1,C5)", "x":10, "y":0},
 | 
			
		||||
                {"label":"K10 (D0,D4)", "x":0, "y":1},
 | 
			
		||||
                {"label":"K11 (D0,C6)", "x":1, "y":1},
 | 
			
		||||
                {"label":"K12 (D0,D7)", "x":2, "y":1},
 | 
			
		||||
                {"label":"K14 (D0,B3)", "x":4, "y":1},
 | 
			
		||||
                {"label":"K15 (D0,B2)", "x":5, "y":1},
 | 
			
		||||
                {"label":"K16 (D0,B6)", "x":6, "y":1},
 | 
			
		||||
                {"label":"K18 (D0,E6)", "x":8, "y":1},
 | 
			
		||||
                {"label":"K19 (D0,C4)", "x":9, "y":1},
 | 
			
		||||
                {"label":"K1A (D0,C5)", "x":10, "y":1},
 | 
			
		||||
                {"label":"K20 (F7,D4)", "x":0, "y":2},
 | 
			
		||||
                {"label":"K21 (F7,C6)", "x":1, "y":2},
 | 
			
		||||
                {"label":"K22 (F7,D7)", "x":2, "y":2},
 | 
			
		||||
                {"label":"K24 (F7,B3)", "x":4, "y":2},
 | 
			
		||||
                {"label":"K25 (F7,B2)", "x":5, "y":2},
 | 
			
		||||
                {"label":"K26 (F7,B6)", "x":6, "y":2},
 | 
			
		||||
                {"label":"K27 (F7,E6)", "x":8, "y":2},
 | 
			
		||||
                {"label":"K29 (F7,C4)", "x":9, "y":2},
 | 
			
		||||
                {"label":"K2A (F7,C5)", "x":10, "y":2}
 | 
			
		||||
                {"matrix": [0, 0], "x": 0, "y": 0},
 | 
			
		||||
                {"matrix": [0, 1], "x": 1, "y": 0},
 | 
			
		||||
                {"matrix": [0, 2], "x": 2, "y": 0},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [0, 4], "x": 4, "y": 0},
 | 
			
		||||
                {"matrix": [0, 5], "x": 5, "y": 0},
 | 
			
		||||
                {"matrix": [0, 6], "x": 6, "y": 0},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [0, 8], "x": 8, "y": 0},
 | 
			
		||||
                {"matrix": [0, 9], "x": 9, "y": 0},
 | 
			
		||||
                {"matrix": [0, 10], "x": 10, "y": 0},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [1, 0], "x": 0, "y": 1},
 | 
			
		||||
                {"matrix": [1, 1], "x": 1, "y": 1},
 | 
			
		||||
                {"matrix": [1, 2], "x": 2, "y": 1},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [1, 4], "x": 4, "y": 1},
 | 
			
		||||
                {"matrix": [1, 5], "x": 5, "y": 1},
 | 
			
		||||
                {"matrix": [1, 6], "x": 6, "y": 1},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [1, 8], "x": 8, "y": 1},
 | 
			
		||||
                {"matrix": [1, 9], "x": 9, "y": 1},
 | 
			
		||||
                {"matrix": [1, 10], "x": 10, "y": 1},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [2, 0], "x": 0, "y": 2},
 | 
			
		||||
                {"matrix": [2, 1], "x": 1, "y": 2},
 | 
			
		||||
                {"matrix": [2, 2], "x": 2, "y": 2},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [2, 4], "x": 4, "y": 2},
 | 
			
		||||
                {"matrix": [2, 5], "x": 5, "y": 2},
 | 
			
		||||
                {"matrix": [2, 6], "x": 6, "y": 2},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [2, 8], "x": 8, "y": 2},
 | 
			
		||||
                {"matrix": [2, 9], "x": 9, "y": 2},
 | 
			
		||||
                {"matrix": [2, 10], "x": 10, "y": 2}
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue