mirror of
https://github.com/google/pebble.git
synced 2025-03-22 03:32:20 +00:00
84 lines
2.1 KiB
C
84 lines
2.1 KiB
C
/*
|
|
* Copyright 2024 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "applib/ui/kino/kino_layer.h"
|
|
|
|
void kino_layer_init(KinoLayer *kino_layer, const GRect *frame) {
|
|
}
|
|
|
|
void kino_layer_deinit(KinoLayer *kino_layer) {
|
|
}
|
|
|
|
KinoLayer *kino_layer_create(GRect frame) {
|
|
return NULL;
|
|
}
|
|
|
|
void kino_layer_destroy(KinoLayer *kino_layer) {
|
|
}
|
|
|
|
Layer *kino_layer_get_layer(KinoLayer *kino_layer) {
|
|
return NULL;
|
|
}
|
|
|
|
void kino_layer_set_reel(KinoLayer *kino_layer, KinoReel *reel, bool take_ownership) {
|
|
}
|
|
|
|
void kino_layer_set_reel_with_resource(KinoLayer *kino_layer, uint32_t resource_id) {
|
|
}
|
|
void kino_layer_set_reel_with_resource_system(KinoLayer *kino_layer, ResAppNum app_num,
|
|
uint32_t resource_id) {
|
|
}
|
|
|
|
KinoReel *kino_layer_get_reel(KinoLayer *kino_layer) {
|
|
return NULL;
|
|
}
|
|
|
|
KinoPlayer *kino_layer_get_player(KinoLayer *kino_layer) {
|
|
return NULL;
|
|
}
|
|
|
|
GColor kino_layer_get_background_color(KinoLayer *kino_layer) {
|
|
return GColorClear;
|
|
}
|
|
|
|
GAlign kino_layer_get_alignment(KinoLayer *kino_layer) {
|
|
return 0;
|
|
}
|
|
|
|
void kino_layer_set_alignment(KinoLayer *kino_layer, GAlign alignment) {
|
|
}
|
|
|
|
void kino_layer_set_background_color(KinoLayer *kino_layer, GColor color) {
|
|
}
|
|
|
|
void kino_layer_play(KinoLayer *kino_layer) {
|
|
}
|
|
|
|
void kino_layer_play_section(KinoLayer *kino_layer, uint32_t from_position, uint32_t to_position) {
|
|
}
|
|
|
|
void kino_layer_pause(KinoLayer *kino_layer) {
|
|
}
|
|
|
|
void kino_layer_rewind(KinoLayer *kino_layer) {
|
|
}
|
|
|
|
GRect kino_layer_get_reel_bounds(KinoLayer *kino_layer) {
|
|
return (GRect){};
|
|
}
|
|
|
|
void kino_layer_set_callbacks(KinoLayer *kino_layer, KinoLayerCallbacks callbacks, void *context) {
|
|
}
|