Enlightenment CVS committal

Author  : atmosphere
Project : e17
Module  : apps/entrance

Dir     : e17/apps/entrance/src/client


Modified Files:
        entrance_session.c main.c 


Log Message:
Minor faces related fixups.

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/entrance/src/client/entrance_session.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -3 -r1.18 -r1.19
--- entrance_session.c  22 Oct 2003 15:44:24 -0000      1.18
+++ entrance_session.c  25 Oct 2003 05:42:57 -0000      1.19
@@ -134,11 +134,6 @@
    {
       entrance_auth_free(e->auth);
       e->auth = entrance_auth_new();
-      if ((obj = edje_object_part_swallow_get(e->edje, "EntranceFace")))
-      {
-         edje_object_part_unswallow(e->edje, obj);
-         evas_object_del(obj);
-      }
       edje_object_signal_emit(e->edje, "In", "EntranceUserEntry");
       /* FIXME: we shouldn't emit UserAuthFail here, but it gets us back to
          the beginning */
@@ -442,9 +437,9 @@
          snprintf(buf, PATH_MAX, "%s/users/%s", PACKAGE_DATA_DIR, icon);
       if ((result = edje_object_file_set(edje, buf, "User")) > 0)
       {
-         Evas_Coord w, h;
+         Evas_Coord w = 48, h = 48;
 
-         edje_object_size_min_get(edje, &w, &h);
+         /* edje_object_size_min_get(edje, &w, &h); */
          evas_object_move(edje, -w, -h);
          evas_object_resize(edje, w, h);
          evas_object_layer_set(edje, 0);
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/entrance/src/client/main.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- main.c      25 Oct 2003 04:50:28 -0000      1.16
+++ main.c      25 Oct 2003 05:42:57 -0000      1.17
@@ -4,71 +4,6 @@
  * Project: Entrance
  * July 24, 2003
  * 
- * Themes are edjes(eet files) and work like this:
- * 1. A Parts Collection Must be Present, Titled "main"
- * 2. Entrance makes use of the Parts of main.  If the required column is
- *    set to No it is an optional feature for the themer.
- * -------------------------------------------------------------------------
- * | Key(state1, state2, ... , staten)         | Type         |  Required |
- * -------------------------------------------------------------------------
- * | EntrancePassEntry(default)                | TEXT         | Yes       |
- * -------------------------------------------------------------------------
- * | EntranceUserEntry(default)                | TEXT         | Yes       |
- * -------------------------------------------------------------------------
- * | EntranceDate(default)                     | TEXT         | No        |
- * -------------------------------------------------------------------------
- * | EntranceTime(default)                     | TEXT         | No        |
- * -------------------------------------------------------------------------
- * | EntranceHostname(default)                 | TEXT         | No        |
- * -------------------------------------------------------------------------
- * | EntranceSession (default, E, KDE, Gnome)   | TEXT        | No        |
- * -------------------------------------------------------------------------
- *
- * 3. The following signals are emitted by entrance and need to be caught in
- * programs.
- * -------------------------------------------------------------------------
- * | Signal                   | Description                           | Req
- * -------------------------------------------------------------------------
- * | EntranceUserAuthSuccess   | After successful authentication this  |
- * |                          | signal is emitted, you can do your own|
- * |                          | animation here if you want.  You must |
- * |                          | emit "EntranceUserAuthSuccessDone" "" | 
- * |                          | after it though in order for          |        
- * |                          | entrance to start your x session      | 
- * |                          |"EntranceUserAuthSuccessDone" ""       | Yes
- * -------------------------------------------------------------------------
- * | EntranceUserFail         | When the user is unknown the system   | No
- * -------------------------------------------------------------------------
- * | EntranceUserAuthFail      | When a user fails a login attempted   | No 
- * -------------------------------------------------------------------------
- * | EntranceUserAuth          | When the user is known to the system, | 
- * |                          | it's time to prompt for their password|
- * |                          |                                       | No
- * -------------------------------------------------------------------------
- *
- * 4. The following signals can be emitted by your application in order
- * to change states in entrance
- * -------------------------------------------------------------------------
- * | Signal                    | Source                                | Req
- * -------------------------------------------------------------------------
- * | "In"                      | Either EntranceUserEntry or           |
- * |                           | EntrancePassEntry depending on which  |
- * |                           | you'd like focus on.                  | No
- * -------------------------------------------------------------------------
- * | "Out"                     | Either EntranceUserEntry or           |
- * |                           | EntrancePassEntry depending on which  |
- * |                           | you'd like to take focus away from.   | No
- * -------------------------------------------------------------------------
- * | EntranceSystemReboot       | When the system request being rebooted| 
- * |                           | Source should be ""                   | No
- * -------------------------------------------------------------------------
- * | EntranceSystemHalt                | When the system requests being halted | 
- * |                           | Source should be ""                   | No
- * -------------------------------------------------------------------------
- * | EntranceUserAuthSuccessDone| When the theme has completed its post |
- * |                           | auth animation.                       |
- * |                           | Source should be ""                   |Yes
- * -------------------------------------------------------------------------
  */
 #include <time.h>
 #include <sys/types.h>




-------------------------------------------------------
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community?  Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to