mirror of
https://github.com/google/pebble.git
synced 2025-03-24 04:29:07 +00:00
54 lines
1.9 KiB
C
54 lines
1.9 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "process_management/app_menu_data_source.h"
|
|
|
|
#include "util/attributes.h"
|
|
|
|
WEAK void app_menu_data_source_init(AppMenuDataSource *source,
|
|
const AppMenuDataSourceCallbacks *handlers,
|
|
void *callback_context) {
|
|
}
|
|
|
|
WEAK void app_menu_data_source_deinit(AppMenuDataSource *source) {
|
|
}
|
|
|
|
WEAK void app_menu_data_source_enable_icons(AppMenuDataSource *source, uint32_t fallback_icon_id) {}
|
|
|
|
WEAK AppMenuNode* app_menu_data_source_get_node_at_index(AppMenuDataSource *source,
|
|
uint16_t row_index) {
|
|
return NULL;
|
|
}
|
|
|
|
WEAK uint16_t app_menu_data_source_get_count(AppMenuDataSource *source) {
|
|
return 0;
|
|
}
|
|
|
|
WEAK uint16_t app_menu_data_source_get_index_of_app_with_install_id(AppMenuDataSource *source,
|
|
AppInstallId install_id) {
|
|
return 0;
|
|
}
|
|
|
|
WEAK void app_menu_data_source_draw_row(AppMenuDataSource *source, GContext *ctx, Layer *cell_layer,
|
|
MenuIndex *cell_index) {}
|
|
|
|
WEAK void app_menu_data_source_set_default_icon(AppMenuDataSource *source, uint32_t icon_id) {}
|
|
|
|
WEAK GBitmap *app_menu_data_source_get_node_icon(AppMenuDataSource *source, AppMenuNode *node) {
|
|
return NULL;
|
|
}
|