-
-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! feat: lib/platform -> lib/ptk
- Loading branch information
Showing
15 changed files
with
46 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* | ||
/* | ||
* lib/i18n/include/i18n.h | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/include/ptk/step_timer.h | ||
* lib/ptk/include/ptk/steptimer.h | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/src/linux/linux_app.c | ||
* lib/ptk/src/linux/app.c | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/src/linux/fb_app.c | ||
* lib/ptk/src/linux/fbapp.c | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/src/linux/fb_app.h | ||
/* | ||
* lib/ptk/src/linux/fbapp.h | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/src/linux/linux_ime.c: -- The input method engine support for linux. | ||
* lib/ptk/src/linux/ime.c: -- The input method engine support for linux. | ||
* | ||
* Copyright (c) 2018-2024, Liu chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/src/linux/linux_keyboard.c: -- Keyboard support for linux. | ||
* lib/ptk/src/linux/keyboard.c: -- Keyboard support for linux. | ||
* | ||
* Copyright (c) 2018-2024, Liu chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
/* | ||
* lib/ptk/src/linux/keyboard.h | ||
* | ||
* Copyright (c) 2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* This file is part of LCUI, distributed under the MIT License found in the | ||
* LICENSE.TXT file in the root directory of this source tree. | ||
*/ | ||
|
||
int ptk_linux_keyboard_init(void); | ||
int ptk_linux_keyboard_destroy(void); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/src/linux/linux_mouse.c: -- Mouse support for linux. | ||
* lib/ptk/src/linux/mouse.c: -- Mouse support for linux. | ||
* | ||
* Copyright (c) 2018-2024, Liu chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
/* | ||
* lib/ptk/src/linux/mouse.h | ||
* | ||
* Copyright (c) 2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* This file is part of LCUI, distributed under the MIT License found in the | ||
* LICENSE.TXT file in the root directory of this source tree. | ||
*/ | ||
|
||
int ptk_linux_mouse_init(void); | ||
int ptk_linux_mouse_destroy(void); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/src/linux/x11_app.c | ||
* lib/ptk/src/linux/x11app.c | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/src/app.h | ||
/* | ||
* lib/ptk/src/linux/x11app.h | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ptk/src/linux/linux_x11clipboard.c: clipboard support for linux x11 | ||
* lib/ptk/src/linux/x11clipboard.c: clipboard support for linux x11 | ||
* | ||
* Copyright (c) 2018-2024, Liu chao <[email protected]> All rights reserved. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
/* | ||
* lib/ptk/src/linux/x11clipboard.h | ||
* | ||
* Copyright (c) 2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* This file is part of LCUI, distributed under the MIT License found in the | ||
* LICENSE.TXT file in the root directory of this source tree. | ||
*/ | ||
|
||
#include "ptk/clipboard.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* lib/ui/include/ui_updater.h | ||
/* | ||
* lib/ui/include/ui/updater.h | ||
* | ||
* Copyright (c) 2023-2024, Liu Chao <[email protected]> All rights reserved. | ||
* | ||
|