Move single LAYOUT_alls to data driven (#20430)
				
					
				
			This commit is contained in:
		
							parent
							
								
									a84528f853
								
							
						
					
					
						commit
						172a40686b
					
				
					 523 changed files with 18787 additions and 20535 deletions
				
			
		| 
						 | 
				
			
			@ -13,7 +13,7 @@
 | 
			
		|||
 * You should have received a copy of the GNU General Public License
 | 
			
		||||
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 */
 | 
			
		||||
#include "glitch.h"
 | 
			
		||||
#include "quantum.h"
 | 
			
		||||
 | 
			
		||||
#ifdef ENCODER_ENABLE
 | 
			
		||||
bool encoder_update_kb(uint8_t index, bool clockwise) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,40 +0,0 @@
 | 
			
		|||
/* Copyright 2021 Matthew Dias
 | 
			
		||||
 *
 | 
			
		||||
 * 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
 | 
			
		||||
 | 
			
		||||
#define XXX KC_NO
 | 
			
		||||
 | 
			
		||||
#include "quantum.h"
 | 
			
		||||
 | 
			
		||||
#define LAYOUT_all( \
 | 
			
		||||
    K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, \
 | 
			
		||||
    K10, K11, K12, K13, K14, K15,      K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K1F, \
 | 
			
		||||
    K20, K21, K22, K23, K24, K25,      K27, K28, K29, K2A, K2B, K2C,      K2E, K2F, \
 | 
			
		||||
    K30,      K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, K3F, \
 | 
			
		||||
    K40, K41,      K43,      K45,      K47,      K49,      K4B, K4C, K4D, K4E, K4F  \
 | 
			
		||||
) { \
 | 
			
		||||
    { K00, K02, K04, K06, K08, K0A, K0C, K0E }, \
 | 
			
		||||
    { K01, K03, K05, K07, K09, K0B, K0D, K0F }, \
 | 
			
		||||
    { K10, K12, K14, XXX, K18, K1A, K1C, K1E }, \
 | 
			
		||||
    { K11, K13, K15, K17, K19, K1B, K1D, K1F }, \
 | 
			
		||||
    { K20, K22, K24, XXX, K28, K2A, K2C, K2E }, \
 | 
			
		||||
    { K21, K23, K25, K27, K29, K2B, XXX, K2F }, \
 | 
			
		||||
    { K30, K32, K34, K36, K38, K3A, K3C, K3E }, \
 | 
			
		||||
    { XXX, K33, K35, K37, K39, K3B, K3D, K3F }, \
 | 
			
		||||
    { K40, XXX, XXX, XXX, XXX, XXX, K4C, K4E }, \
 | 
			
		||||
    { K41, K43, K45, K47, K49, K4B, K4D, K4F } \
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -26,81 +26,92 @@
 | 
			
		|||
    "layouts": {
 | 
			
		||||
        "LAYOUT_all": {
 | 
			
		||||
            "layout": [
 | 
			
		||||
                { "x": 0.5, "y": 0.5 },
 | 
			
		||||
                { "x": 1.5, "y": 0.5 },
 | 
			
		||||
                { "x": 3.25, "y": 0.5 },
 | 
			
		||||
                { "x": 4.25, "y": 0.5 },
 | 
			
		||||
                { "x": 5.25, "y": 0.5 },
 | 
			
		||||
                { "x": 6.25, "y": 0.5 },
 | 
			
		||||
                { "x": 7.25, "y": 0.5 },
 | 
			
		||||
                { "x": 10, "y": 0.5 },
 | 
			
		||||
                { "x": 11, "y": 0.5 },
 | 
			
		||||
                { "x": 12, "y": 0.5 },
 | 
			
		||||
                { "x": 13, "y": 0.5 },
 | 
			
		||||
                { "x": 14.5, "y": 0.5 },
 | 
			
		||||
                { "x": 15.5, "y": 0.5 },
 | 
			
		||||
                { "x": 16.5, "y": 0.5 },
 | 
			
		||||
                { "x": 17.5, "y": 0.5 },
 | 
			
		||||
                { "x": 19, "y": 0 },
 | 
			
		||||
                {"matrix": [0, 0], "x": 0.5, "y": 0.5},
 | 
			
		||||
                {"matrix": [1, 0], "x": 1.5, "y": 0.5},
 | 
			
		||||
                {"matrix": [0, 1], "x": 3.25, "y": 0.5},
 | 
			
		||||
                {"matrix": [1, 1], "x": 4.25, "y": 0.5},
 | 
			
		||||
                {"matrix": [0, 2], "x": 5.25, "y": 0.5},
 | 
			
		||||
                {"matrix": [1, 2], "x": 6.25, "y": 0.5},
 | 
			
		||||
                {"matrix": [0, 3], "x": 7.25, "y": 0.5},
 | 
			
		||||
 | 
			
		||||
                { "x": 0.15, "y": 1.5, "w": 1.5 },
 | 
			
		||||
                { "x": 1.65, "y": 1.5 },
 | 
			
		||||
                { "x": 3.75, "y": 1.5 },
 | 
			
		||||
                { "x": 4.75, "y": 1.5 },
 | 
			
		||||
                { "x": 5.75, "y": 1.5 },
 | 
			
		||||
                { "x": 6.75, "y": 1.5 },
 | 
			
		||||
                { "x": 9.5, "y": 1.5 },
 | 
			
		||||
                { "x": 10.5, "y": 1.5 },
 | 
			
		||||
                { "x": 11.5, "y": 1.5 },
 | 
			
		||||
                { "x": 12.5, "y": 1.5 },
 | 
			
		||||
                { "x": 14.25, "y": 1.5 },
 | 
			
		||||
                { "x": 15.25, "y": 1.5 },
 | 
			
		||||
                { "x": 16.25, "y": 1.5 },
 | 
			
		||||
                { "x": 17.25, "y": 1.5, "w": 1.5 },
 | 
			
		||||
                { "x": 19, "y": 1.5 },
 | 
			
		||||
                {"matrix": [1, 3], "x": 10, "y": 0.5},
 | 
			
		||||
                {"matrix": [0, 4], "x": 11, "y": 0.5},
 | 
			
		||||
                {"matrix": [1, 4], "x": 12, "y": 0.5},
 | 
			
		||||
                {"matrix": [0, 5], "x": 13, "y": 0.5},
 | 
			
		||||
                {"matrix": [1, 5], "x": 14.5, "y": 0.5},
 | 
			
		||||
                {"matrix": [0, 6], "x": 15.5, "y": 0.5},
 | 
			
		||||
                {"matrix": [1, 6], "x": 16.5, "y": 0.5},
 | 
			
		||||
                {"matrix": [0, 7], "x": 17.5, "y": 0.5},
 | 
			
		||||
 | 
			
		||||
                { "x": 0.15, "y": 2.5, "w": 1.75 },
 | 
			
		||||
                { "x": 1.9, "y": 2.5 },
 | 
			
		||||
                { "x": 4, "y": 2.5 },
 | 
			
		||||
                { "x": 5, "y": 2.5 },
 | 
			
		||||
                { "x": 6, "y": 2.5 },
 | 
			
		||||
                { "x": 7, "y": 2.5 },
 | 
			
		||||
                { "x": 9.75, "y": 2.5 },
 | 
			
		||||
                { "x": 10.75, "y": 2.5 },
 | 
			
		||||
                { "x": 11.75, "y": 2.5 },
 | 
			
		||||
                { "x": 12.75, "y": 2.5 },
 | 
			
		||||
                { "x": 14.5, "y": 2.5 },
 | 
			
		||||
                { "x": 15.5, "y": 2.5 },
 | 
			
		||||
                { "x": 16.5, "y": 2.5, "w": 2.25 },
 | 
			
		||||
                { "x": 19, "y": 2.5 },
 | 
			
		||||
                {"matrix": [1, 7], "x": 19, "y": 0},
 | 
			
		||||
 | 
			
		||||
                { "x": 0, "y": 3.5, "w": 2.25 },
 | 
			
		||||
                { "x": 2.25, "y": 3.5 },
 | 
			
		||||
                { "x": 4.5, "y": 3.5 },
 | 
			
		||||
                { "x": 5.5, "y": 3.5 },
 | 
			
		||||
                { "x": 6.5, "y": 3.5 },
 | 
			
		||||
                { "x": 7.5, "y": 3.5 },
 | 
			
		||||
                { "x": 9.25, "y": 3.5 },
 | 
			
		||||
                { "x": 10.25, "y": 3.5 },
 | 
			
		||||
                { "x": 11.25, "y": 3.5 },
 | 
			
		||||
                { "x": 12.25, "y": 3.5 },
 | 
			
		||||
                { "x": 14.25, "y": 3.5 },
 | 
			
		||||
                { "x": 15.25, "y": 3.5 },
 | 
			
		||||
                { "x": 16.25, "y": 3.5, "w": 1.75 },
 | 
			
		||||
                { "x": 18.25, "y": 3.75 },
 | 
			
		||||
                { "x": 19.5, "y": 3.5 },
 | 
			
		||||
                {"matrix": [2, 0], "x": 0.15, "y": 1.5, "w": 1.5},
 | 
			
		||||
                {"matrix": [3, 0], "x": 1.65, "y": 1.5},
 | 
			
		||||
                {"matrix": [2, 1], "x": 3.75, "y": 1.5},
 | 
			
		||||
                {"matrix": [3, 1], "x": 4.75, "y": 1.5},
 | 
			
		||||
                {"matrix": [2, 2], "x": 5.75, "y": 1.5},
 | 
			
		||||
                {"matrix": [3, 2], "x": 6.75, "y": 1.5},
 | 
			
		||||
 | 
			
		||||
                { "x": 0, "y": 4.5, "w": 1.25 },
 | 
			
		||||
                { "x": 1.25, "y": 4.5, "w": 1.25 },
 | 
			
		||||
                { "x": 4.75, "y": 4.5, "w": 2.75 },
 | 
			
		||||
                { "x": 7.5, "y": 4.5, "w": 1.25 },
 | 
			
		||||
                { "x": 9.5, "y": 4.5, "w": 1.25 },
 | 
			
		||||
                { "x": 10.75, "y": 4.5, "w": 2.25 },
 | 
			
		||||
                { "x": 15, "y": 4.5 },
 | 
			
		||||
                { "x": 16, "y": 4.5 },
 | 
			
		||||
                { "x": 17.25, "y": 4.75 },
 | 
			
		||||
                { "x": 18.25, "y": 4.75 },
 | 
			
		||||
                { "x": 19.25, "y": 4.75 }
 | 
			
		||||
                {"matrix": [3, 3], "x": 9.5, "y": 1.5},
 | 
			
		||||
                {"matrix": [2, 4], "x": 10.5, "y": 1.5},
 | 
			
		||||
                {"matrix": [3, 4], "x": 11.5, "y": 1.5},
 | 
			
		||||
                {"matrix": [2, 5], "x": 12.5, "y": 1.5},
 | 
			
		||||
                {"matrix": [3, 5], "x": 14.25, "y": 1.5},
 | 
			
		||||
                {"matrix": [2, 6], "x": 15.25, "y": 1.5},
 | 
			
		||||
                {"matrix": [3, 6], "x": 16.25, "y": 1.5},
 | 
			
		||||
                {"matrix": [2, 7], "x": 17.25, "y": 1.5, "w": 1.5},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [3, 7], "x": 19, "y": 1.5},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [4, 0], "x": 0.15, "y": 2.5, "w": 1.75},
 | 
			
		||||
                {"matrix": [5, 0], "x": 1.9, "y": 2.5},
 | 
			
		||||
                {"matrix": [4, 1], "x": 4, "y": 2.5},
 | 
			
		||||
                {"matrix": [5, 1], "x": 5, "y": 2.5},
 | 
			
		||||
                {"matrix": [4, 2], "x": 6, "y": 2.5},
 | 
			
		||||
                {"matrix": [5, 2], "x": 7, "y": 2.5},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [5, 3], "x": 9.75, "y": 2.5},
 | 
			
		||||
                {"matrix": [4, 4], "x": 10.75, "y": 2.5},
 | 
			
		||||
                {"matrix": [5, 4], "x": 11.75, "y": 2.5},
 | 
			
		||||
                {"matrix": [4, 5], "x": 12.75, "y": 2.5},
 | 
			
		||||
                {"matrix": [5, 5], "x": 14.5, "y": 2.5},
 | 
			
		||||
                {"matrix": [4, 6], "x": 15.5, "y": 2.5},
 | 
			
		||||
                {"matrix": [4, 7], "x": 16.5, "y": 2.5, "w": 2.25},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [5, 7], "x": 19, "y": 2.5},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [6, 0], "x": 0, "y": 3.5, "w": 2.25},
 | 
			
		||||
                {"matrix": [6, 1], "x": 2.25, "y": 3.5},
 | 
			
		||||
                {"matrix": [7, 1], "x": 4.5, "y": 3.5},
 | 
			
		||||
                {"matrix": [6, 2], "x": 5.5, "y": 3.5},
 | 
			
		||||
                {"matrix": [7, 2], "x": 6.5, "y": 3.5},
 | 
			
		||||
                {"matrix": [6, 3], "x": 7.5, "y": 3.5},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [7, 3], "x": 9.25, "y": 3.5},
 | 
			
		||||
                {"matrix": [6, 4], "x": 10.25, "y": 3.5},
 | 
			
		||||
                {"matrix": [7, 4], "x": 11.25, "y": 3.5},
 | 
			
		||||
                {"matrix": [6, 5], "x": 12.25, "y": 3.5},
 | 
			
		||||
                {"matrix": [7, 5], "x": 14.25, "y": 3.5},
 | 
			
		||||
                {"matrix": [6, 6], "x": 15.25, "y": 3.5},
 | 
			
		||||
                {"matrix": [7, 6], "x": 16.25, "y": 3.5, "w": 1.75},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [6, 7], "x": 18.25, "y": 3.75},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [7, 7], "x": 19.5, "y": 3.5},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [8, 0], "x": 0, "y": 4.5, "w": 1.25},
 | 
			
		||||
                {"matrix": [9, 0], "x": 1.25, "y": 4.5, "w": 1.25},
 | 
			
		||||
                {"matrix": [9, 1], "x": 4.75, "y": 4.5, "w": 2.75},
 | 
			
		||||
                {"matrix": [9, 2], "x": 7.5, "y": 4.5, "w": 1.25},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [9, 3], "x": 9.5, "y": 4.5, "w": 1.25},
 | 
			
		||||
                {"matrix": [9, 4], "x": 10.75, "y": 4.5, "w": 2.25},
 | 
			
		||||
                {"matrix": [9, 5], "x": 15, "y": 4.5},
 | 
			
		||||
                {"matrix": [8, 6], "x": 16, "y": 4.5},
 | 
			
		||||
 | 
			
		||||
                {"matrix": [9, 6], "x": 17.25, "y": 4.75},
 | 
			
		||||
                {"matrix": [8, 7], "x": 18.25, "y": 4.75},
 | 
			
		||||
                {"matrix": [9, 7], "x": 19.25, "y": 4.75}
 | 
			
		||||
            ]
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue