2012-07-18 13:31:41 +04:00
/*
* Samba Unix / Linux SMB client library
* Registry Editor
* Copyright ( C ) Christopher Davis 2012
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 3 of the License , or
* ( at your option ) any later version .
*
* 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 .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# ifndef _REGEDIT_VALUELIST_H_
# define _REGEDIT_VALUELIST_H_
# include <ncurses.h>
2012-08-11 07:05:20 +04:00
# include <panel.h>
2012-07-18 13:31:41 +04:00
struct registry_key ;
struct value_item {
uint32_t type ;
DATA_BLOB data ;
const char * value_name ;
2014-06-10 21:35:19 +04:00
char * value ;
2012-08-20 07:09:53 +04:00
bool unprintable ;
2012-07-18 13:31:41 +04:00
} ;
2014-06-10 21:35:19 +04:00
struct multilist ;
2012-07-18 13:31:41 +04:00
struct value_list {
WINDOW * window ;
2014-05-21 03:17:42 +04:00
WINDOW * sub ;
2012-08-11 07:05:20 +04:00
PANEL * panel ;
2014-06-10 21:35:19 +04:00
size_t nvalues ;
struct value_item * values ;
struct multilist * list ;
} ;
2012-08-11 07:05:20 +04:00
struct value_list * value_list_new ( TALLOC_CTX * ctx , int nlines , int ncols ,
int begin_y , int begin_x ) ;
2012-07-18 13:31:41 +04:00
void value_list_show ( struct value_list * vl ) ;
2014-05-21 03:17:42 +04:00
void value_list_set_selected ( struct value_list * vl , bool select ) ;
2014-08-01 10:24:19 +04:00
const char * * value_list_load_names ( TALLOC_CTX * ctx , struct registry_key * key ) ;
2012-07-18 13:31:41 +04:00
WERROR value_list_load ( struct value_list * vl , struct registry_key * key ) ;
2012-08-11 07:05:20 +04:00
void value_list_resize ( struct value_list * vl , int nlines , int ncols ,
int begin_y , int begin_x ) ;
2014-06-10 21:35:19 +04:00
struct value_item * value_list_get_current_item ( struct value_list * vl ) ;
2014-07-27 06:49:33 +04:00
void value_list_set_current_item ( struct value_list * vl ,
const struct value_item * item ) ;
void value_list_set_current_item_by_name ( struct value_list * vl ,
const char * name ) ;
2014-06-10 21:35:19 +04:00
void value_list_driver ( struct value_list * vl , int c ) ;
2012-07-18 13:31:41 +04:00
2014-08-01 10:24:19 +04:00
WERROR value_list_load_quick ( struct value_list * vl , struct registry_key * key ) ;
WERROR value_list_sync ( struct value_list * vl ) ;
struct value_item * value_list_find_next_item ( struct value_list * vl ,
struct value_item * vitem ,
const char * s ,
regedit_search_match_fn_t match ) ;
struct value_item * value_list_find_prev_item ( struct value_list * vl ,
struct value_item * vitem ,
const char * s ,
regedit_search_match_fn_t match ) ;
2012-07-18 13:31:41 +04:00
# endif