Rename files in she from vk -> keys

This commit is contained in:
David Capello 2018-08-08 17:42:31 -03:00
parent 2487eb81d2
commit de6cf4b08d
7 changed files with 13 additions and 13 deletions

View File

@ -121,8 +121,8 @@ if(USE_SKIA_BACKEND)
if(WIN32)
list(APPEND SHE_SOURCES
skia/skia_window_win.cpp
win/keys.cpp
win/pen.cpp
win/vk.cpp
win/winapi.cpp
win/window.cpp
win/window_dde.cpp)
@ -131,8 +131,8 @@ if(USE_SKIA_BACKEND)
osx/app.mm
osx/app_delegate.mm
osx/event_queue.mm
osx/keys.mm
osx/view.mm
osx/vk.mm
osx/window.mm
skia/skia_window_osx.mm)
else()

View File

@ -1,11 +1,11 @@
// SHE library
// Copyright (C) 2017 David Capello
// Copyright (C) 2017-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef SHE_OSX_VK_H_INCLUDED
#define SHE_OSX_VK_H_INCLUDED
#ifndef SHE_OSX_KEYS_H_INCLUDED
#define SHE_OSX_KEYS_H_INCLUDED
#pragma once
#include "she/keys.h"

View File

@ -1,5 +1,5 @@
// SHE library
// Copyright (C) 2015-2017 David Capello
// Copyright (C) 2015-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
@ -11,7 +11,7 @@
#include "config.h"
#endif
#include "she/osx/vk.h"
#include "she/osx/keys.h"
#include <Cocoa/Cocoa.h>
#include <Carbon/Carbon.h> // TIS functions

View File

@ -1,5 +1,5 @@
// SHE library
// Copyright (C) 2015-2017 David Capello
// Copyright (C) 2015-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
@ -16,7 +16,7 @@
#include "she/event.h"
#include "she/event_queue.h"
#include "she/osx/generate_drop_files.h"
#include "she/osx/vk.h"
#include "she/osx/keys.h"
#include "she/osx/window.h"
#include "she/system.h"

View File

@ -1,5 +1,5 @@
// SHE library
// Copyright (C) 2012-2016 David Capello
// Copyright (C) 2012-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
@ -8,7 +8,7 @@
#include "config.h"
#endif
#include "she/win/vk.h"
#include "she/win/keys.h"
namespace she {

View File

@ -1,5 +1,5 @@
// SHE library
// Copyright (C) 2012-2017 David Capello
// Copyright (C) 2012-2018 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.

View File

@ -21,8 +21,8 @@
#include "gfx/size.h"
#include "she/event.h"
#include "she/native_cursor.h"
#include "she/win/keys.h"
#include "she/win/system.h"
#include "she/win/vk.h"
#include "she/win/window_dde.h"
#define SHE_WND_CLASS_NAME L"Aseprite.Window"