Don't need these headers here either ... already in e.h.

Fix formatting.



SVN revision: 51206
This commit is contained in:
Christopher Michael 2010-08-16 12:47:44 +00:00
parent db5ec3e8c1
commit 678acb7bdd
1 changed files with 98 additions and 89 deletions

View File

@ -1,10 +1,8 @@
#ifndef E_RANDR_H
#define E_RANDR_H
#include <Eina.h>
#include <Ecore_X.h>
typedef struct _E_Randr_Crtc_Info {
typedef struct _E_Randr_Crtc_Info
{
Ecore_X_ID xid;
Eina_Rectangle geometry;
Eina_Rectangle panning;
@ -19,7 +17,8 @@ typedef struct _E_Randr_Crtc_Info {
Ecore_X_Randr_Mode_Info *current_mode;
} E_Randr_Crtc_Info;
typedef struct _E_Randr_Output_Info {
typedef struct _E_Randr_Output_Info
{
Ecore_X_ID xid;
char *name;
int name_length;
@ -46,7 +45,8 @@ typedef struct _E_Randr_Output_Info {
Eina_List *compatible_outputs;
} E_Randr_Output_Info;
typedef struct _E_Randr_Screen_Info_11 {
typedef struct _E_Randr_Screen_Info_11
{
//List of Ecore_X_Randr_Screen_Size_MM*
Eina_List *sizes;
int csize_index;
@ -57,7 +57,8 @@ typedef struct _E_Randr_Screen_Info_11 {
Ecore_X_Randr_Refresh_Rate current_rate;
} E_Randr_Screen_Info_11;
typedef struct _E_Randr_Screen_Info_12 {
typedef struct _E_Randr_Screen_Info_12
{
Ecore_X_Randr_Screen_Size min_size;
Ecore_X_Randr_Screen_Size max_size;
Ecore_X_Randr_Screen_Size current_size;
@ -70,48 +71,56 @@ typedef struct _E_Randr_Screen_Info_12 {
} E_Randr_Screen_Info_12;
//RRVD == RandR(R) Version Depended
typedef union _E_Randr_Screen_RRVD_Info {
typedef union _E_Randr_Screen_RRVD_Info
{
E_Randr_Screen_Info_11 *randr_info_11;
E_Randr_Screen_Info_12 *randr_info_12;
} E_Randr_Screen_RRVD_Info;
typedef struct _E_Randr_Screen_Info {
typedef struct _E_Randr_Screen_Info
{
Ecore_X_Window root;
int randr_version;
E_Randr_Screen_RRVD_Info rrvd_info;
} E_Randr_Screen_Info;
//Following stuff is just for configuration purposes
typedef struct _E_Randr_Output_Restore_Info {
typedef struct _E_Randr_Output_Restore_Info
{
const char *edid;
double backlight_level;
} E_Randr_Output_Restore_Info;
typedef struct _E_Randr_Crtc_Restore_Info {
typedef struct _E_Randr_Crtc_Restore_Info
{
Eina_Rectangle geometry;
Ecore_X_Randr_Orientation orientation;
//list of the outputs;
Eina_List *outputs;
} E_Randr_Crtc_Restore_Info;
typedef struct _E_Randr_Screen_Restore_Info_11 {
typedef struct _E_Randr_Screen_Restore_Info_11
{
Ecore_X_Randr_Screen_Size size;
Ecore_X_Randr_Refresh_Rate refresh_rate;
Ecore_X_Randr_Orientation orientation;
} E_Randr_Screen_Restore_Info_11;
typedef struct _E_Randr_Screen_Restore_Info_12 {
typedef struct _E_Randr_Screen_Restore_Info_12
{
Eina_List *crtcs;
Ecore_X_Randr_Output_Policy output_policy;
Ecore_X_Randr_Relative_Alignment alignment;
} E_Randr_Screen_Restore_Info_12;
typedef union _E_Randr_Screen_Restore_Info_Union {
typedef union _E_Randr_Screen_Restore_Info_Union
{
E_Randr_Screen_Restore_Info_11 *restore_info_11;
Eina_List *restore_info_12;
} E_Randr_Screen_Restore_Info_Union;
typedef struct _E_Randr_Screen_Restore_Info {
typedef struct _E_Randr_Screen_Restore_Info
{
int randr_version;
E_Randr_Screen_Restore_Info_Union rrvd_restore_info;
} E_Randr_Screen_Restore_Info;