From ee2298a313b6e425d6ff0324be6a313b1cd9a399 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Mon, 2 Mar 2009 22:54:30 -0800 Subject: auto import from //depot/cupcake/@137055 --- android/user-config.h | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 android/user-config.h (limited to 'android/user-config.h') diff --git a/android/user-config.h b/android/user-config.h new file mode 100644 index 0000000..5fc6325 --- /dev/null +++ b/android/user-config.h @@ -0,0 +1,51 @@ +/* Copyright (C) 2009 The Android Open Source Project +** +** This software is licensed under the terms of the GNU General Public +** License version 2, as published by the Free Software Foundation, and +** may be copied, distributed, and modified under those terms. +** +** 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. +*/ +#ifndef _ANDROID_USER_CONFIG_H +#define _ANDROID_USER_CONFIG_H + +#include "android/avd/info.h" +#include + +/* a structure used to model the user-configuration settings + * + * At the moment, this is only used to store the last position + * of the emulator window and a unique 64-bit UUID. We might + * add more AVD-specific preferences here in the future. + * + * By definition, these settings should be optional and we + * should be able to work without them, unlike the AVD + * configuration information found in config.ini + */ +typedef struct AUserConfig AUserConfig; + +/* Create a new AUserConfig object from a given AvdInfo */ +AUserConfig* auserConfig_new( AvdInfo* info ); + +/* Retrieve the unique UID for this AVD */ +uint64_t auserConfig_getUUID( AUserConfig* uconfig ); + +/* Retrieve the stored window position for this AVD */ +void auserConfig_getWindowPos( AUserConfig* uconfig, int *pX, int *pY ); + +/* Change the stored window position for this AVD */ +void auserConfig_setWindowPos( AUserConfig* uconfig, int x, int y ); + +/* Save the user configuration back to the content directory. + * Should be used in an atexit() handler. This will effectively + * only save the user configuration to disk if its content + * has changed. + */ +void auserConfig_save( AUserConfig* uconfig ); + +/* */ + +#endif /* _ANDROID_USER_CONFIG_H */ -- cgit v1.1