CVS Update: xc (branch: trunk)

2005-09-13 Thread Mark Vojkovich
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   05/09/13 19:28:03

Log message:
Fix a potential problem with pixmap cache corruption on GeForce 6xxx
  and 7xxx parts.

Modified files:
  xc/programs/Xserver/hw/xfree86/drivers/nv/:
nv_driver.c nv_hw.c nv_setup.c 
  
  Revision  ChangesPath
  1.137 +19 -7 xc/programs/Xserver/hw/xfree86/drivers/nv/nv_driver.c
  1.16  +39 -12xc/programs/Xserver/hw/xfree86/drivers/nv/nv_hw.c
  1.48  +1 -2  xc/programs/Xserver/hw/xfree86/drivers/nv/nv_setup.c

___
Cvs-commit mailing list
Cvs-commit@XFree86.Org
http://XFree86.Org/mailman/listinfo/cvs-commit


Re: Fetching symbols information with XKBlib

2005-09-13 Thread Ivan Pascal
 Hello,
 
 But I can't find a way to ask about current symbols. I just want to receive
 short description like 'ru' or 'en' (or any other information which may be
 used to identify current symbols) - is there a way to get it ?

You can fetch names of groups that are symbolic names specified in
xkb/symbols/* files like
name[Group1] = Russian;

The function for getting these names is
XkbGetNames(dpy, XkbGroupNamesMask, xkb);
where 'xkb' is a pointer (XkbDescrPtr) to some structure 'XKB Description'.

You have to allocate this decription structure with XkbAllocKeyboard(void)
before XkbGetNames call.
If XkbGetName is completed successfully the names will appear in the array
of Atoms
xkb-names-groups[]

-- 
 Ivan U. Pascal |   e-mail: [EMAIL PROTECTED]
   Administrator of |   Tomsk State University
 University Network |   Tomsk, Russia
___
Devel mailing list
Devel@XFree86.Org
http://XFree86.Org/mailman/listinfo/devel


Moving XtWidth, XtHeight, XtX and XtY macroes from XmP.h to IntrinsicP.h

2005-09-13 Thread Alexander Pohoyda
Don't you think it makes sense to move (some of) those macroes from
Xm/XmP.h to X11/IntrinsicP.h file?  They seem to belong there.

Please CC me on reply.  Thank you!

-- 
Alexander Pohoyda [EMAIL PROTECTED]
PGP Key fingerprint: 7F C9 CC 5A 75 CD 89 72  15 54 5F 62 20 23 C6 44
___
Devel mailing list
Devel@XFree86.Org
http://XFree86.Org/mailman/listinfo/devel


libXaw/Viewport widget initialization

2005-09-13 Thread Alexander Pohoyda
The original problem is that when I use my experimental Hyperbolic
Tree widget as a child of Viewport widget, the size of unrealized
Viewport widget is not yet set and thus I cannot find out how much
space I have available for layout.

I have the following patch in mind and it solves the problem for me.

Does it make sense or should I look for another solution?


Index: Viewport.c
===
RCS file: /cvs/xc/lib/Xaw/Viewport.c,v
retrieving revision 1.11
diff -u -r1.11 Viewport.c
--- Viewport.c  14 Dec 2001 19:54:45 -  1.11
+++ Viewport.c  13 Sep 2005 18:18:07 -
@@ -292,6 +292,12 @@
 w-form.default_spacing = 0; /* Reset the default spacing to 0 pixels */
 
 /*
+ * Get the size from the parent
+ */
+XtWidth(w) = XtWidth(XtParent(w));
+XtHeight(w) = XtHeight(XtParent(w));
+
+/*
  * Initialize all widget pointers to NULL
  */
 w-viewport.child = NULL;


Please CC me on reply.  Thank you.

-- 
Alexander Pohoyda [EMAIL PROTECTED]
PGP Key fingerprint: 7F C9 CC 5A 75 CD 89 72  15 54 5F 62 20 23 C6 44
___
Devel mailing list
Devel@XFree86.Org
http://XFree86.Org/mailman/listinfo/devel


Re: Moving XtWidth, XtHeight, XtX and XtY macroes from XmP.h to IntrinsicP.h

2005-09-13 Thread Marc Aurele La France

On Tue, 13 Sep 2005, Alexander Pohoyda wrote:


Don't you think it makes sense to move (some of) those macroes from
Xm/XmP.h to X11/IntrinsicP.h file?  They seem to belong there.


Given that what you actually mean is Xt/IntrinsicP.h, I'd tend to agree with 
you.  Especially given that, in out source tree, only Xaw references these 
anyway.


Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Academic Information and|  fax:1-780-492-1729   |
|Communications Technologies   |  email:  [EMAIL PROTECTED]  |
|  352 General Services Building   +---+
|  University of Alberta   |   |
|  Edmonton, Alberta   | Standard disclaimers apply|
|  T6G 2H1 |   |
|  CANADA  |   |
+--+---+
XFree86 developer and VP.  ATI driver and X server internals.
___
Devel mailing list
Devel@XFree86.Org
http://XFree86.Org/mailman/listinfo/devel


Re: Moving XtWidth, XtHeight, XtX and XtY macroes from XmP.h to IntrinsicP.h

2005-09-13 Thread Marc Aurele La France

On Tue, 13 Sep 2005, Marc Aurele La France wrote:

On Tue, 13 Sep 2005, Alexander Pohoyda wrote:

Don't you think it makes sense to move (some of) those macroes from
Xm/XmP.h to X11/IntrinsicP.h file?  They seem to belong there.


Given that what you actually mean is Xt/IntrinsicP.h, I'd tend to agree with 
you.  Especially given that, in out source tree, only Xaw references these 
anyway.


... even though Xm/XmP.h is a Motif thing (i.e. not distributed with any 
XFree86 or X.Org server, per se).


Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Academic Information and|  fax:1-780-492-1729   |
|Communications Technologies   |  email:  [EMAIL PROTECTED]  |
|  352 General Services Building   +---+
|  University of Alberta   |   |
|  Edmonton, Alberta   | Standard disclaimers apply|
|  T6G 2H1 |   |
|  CANADA  |   |
+--+---+
XFree86 developer and VP.  ATI driver and X server internals.
___
Devel mailing list
Devel@XFree86.Org
http://XFree86.Org/mailman/listinfo/devel


Re: libXaw/Viewport widget initialization

2005-09-13 Thread Marc Aurele La France

On Tue, 13 Sep 2005, Alexander Pohoyda wrote:


The original problem is that when I use my experimental Hyperbolic
Tree widget as a child of Viewport widget, the size of unrealized
Viewport widget is not yet set and thus I cannot find out how much
space I have available for layout.



I have the following patch in mind and it solves the problem for me.



Does it make sense or should I look for another solution?



Index: Viewport.c
===
RCS file: /cvs/xc/lib/Xaw/Viewport.c,v
retrieving revision 1.11
diff -u -r1.11 Viewport.c
--- Viewport.c  14 Dec 2001 19:54:45 -  1.11
+++ Viewport.c  13 Sep 2005 18:18:07 -
@@ -292,6 +292,12 @@
w-form.default_spacing = 0; /* Reset the default spacing to 0 pixels */

/*
+ * Get the size from the parent
+ */
+XtWidth(w) = XtWidth(XtParent(w));
+XtHeight(w) = XtHeight(XtParent(w));
+
+/*
 * Initialize all widget pointers to NULL
 */
w-viewport.child = NULL;


That looks fine to me.

I do have one request though.  If you are to contune with more Xaw work, 
please ensure you do not adversely affect Xaw6.


Thanks.

Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Academic Information and|  fax:1-780-492-1729   |
|Communications Technologies   |  email:  [EMAIL PROTECTED]  |
|  352 General Services Building   +---+
|  University of Alberta   |   |
|  Edmonton, Alberta   | Standard disclaimers apply|
|  T6G 2H1 |   |
|  CANADA  |   |
+--+---+
XFree86 developer and VP.  ATI driver and X server internals.
___
Devel mailing list
Devel@XFree86.Org
http://XFree86.Org/mailman/listinfo/devel


[XFree86] Tau cuu nan SAR 411 - Anh hung bien ca !

2005-09-13 Thread DP Consulting






 
 
 UBND
 TP HẢI PHÒNG KHEN THƯỞNG TÀU CỨU NẠN SAR 411 
 
 www.mayphatdien.com.vn



 
 
  Chữa cháy cho tàu Biển Đông  Sẳn sàn cứu hộ 24/24  Đưa thuyền viên vào bờ cấp cứu 
 
 
 
 Trong cơn bão số 2
 vừa qua, cán bộ, công chức Trung Tâm Tìm Kiếm Cứu Nạn Hàng Hải Khu Vực 1
 nói chung và tập thể thuyền viên tàu SAR 411 (con tàu
 sử dụng động cơ MTU series 4000 -DaimlerChrysler, SAR 411 là tàu cứu nạn
 hàng hải hiện đại đầu tiên có tại Việt Nam do Damen Gorinchem Hà Lan
 đóng) nói riêng đã không quản nguy hiểm vật lộn với sóng gió cứu
 thoát 19 thành viên tàu Chang Hai 111 (Trung Quốc) gặp nạn ở cồn Băng Lược
 trên vùng biển Đông Bắc, đồng thời cứu sống 30 công nhân Công Ty Công
 Nghiệp Tàu Thủy Nam Triệu đang làm nhiệm vụ tại ụ nổi 4000 tấn trên vùng
 biển Cát Bà bị trôi dạt. Trước đo, Trung tâm còn cứu thoát nhiều trường
 hợp gặp nạn trên biển, trong đó cứu sống 11 thành viên tàu chở hàng Hoàng
 An 26 bị tai nạn trên đường từ Đà Nẵng ra Hải Phòng. 
 Với những thành tích xuất sắc cứu nạn trên biển, vừa qua tập thể cán
 bộ, công chức Trung Tâm Tìm Kiếm Cưú Nạn Hàng Hải Khu Vực 1 và thuyền viên
 tàu SAR 411 đã được UBND Thành phố Hải Phòng khen thưởng, kịp thời động
 viên các đơn vị cứu nạn trên biển tiếp tục hoàn thành nhiệm vụ trong bất
 kể tình huống nào. 
  
 (Theo báo công an nhân dân ngày
 15/8/2005 )
 


 
 HÌNH
 ẢNH CỦA VÀI CON TÀU LẮP ĐỘNG CƠ MTU 


 
 
 
 DP Consulting là
 một trong những Công ty dịch vụ kỹ thuật phát triển nhanh nhất trên thị
 trường Việt Nam. Chúng tôi chuyên cung cấp các hệ thống máy phát điện dự
 phòng, dịch vụ hậu mãi và chăm sóc khách hàng cho các công trình trọng
 điểm trên toàn lãnh thổ Việt Nam. Hieän nay coâng ty
 DP Consulting ñang laø nhaø phaân phoái chính thöùc caùc loïai maùy phaùt
 ñieän cuûa taäp ñoaøn MTU taïi Vieät Nam.
 
 DP CONSULTING CO., LTD 



 
  
 73
 Trần Bình Trọng, Q.Gò Vấp, TP Hồ Chí Minh, Việt Nam
 

 
 Tel
 : +84 8 8983801 / 5881246 / 5881245
 
 Fax
 : +84 8 8983801 / 5882521
 
 E-mail
 : [EMAIL PROTECTED]


 
 www.mayphatdien.com.vn




[XFree86] Hello

2005-09-13 Thread anthony arriaza

Hi Xfree86,



  I would like to know how i could resolve this problem i type in,  
Startx   , and it comes up with Server is already active for display 0

If this server is no longer running. remove /tmp/.XO-lock
and start again.


Please if you can help me resolve this problem it would be great thank you.

_
Express yourself instantly with MSN Messenger! Download today - it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/


___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] una promocion dieciochera..

2005-09-13 Thread Decoflores





  
  

  


  
  


  
  


  

  
  

  


  

  
  


  






  

  
  



  


  

  

  

  

  


  

  
12 
Rosas Ecuatorianas a solo 19900. Y Solo por esta 
semana lleva un globo y 3 Rosas mas de regalo 
Despachos a Todo Chile 
y El Mundo
Las 
Condes y Vitacura Despacho Gratis.
Puedes Incluir finos 
bombones a tu compra 

  

  
  

Aprovecha solo 
  por esta semana 15 rosas ecuatorianas mas un globo 
  de regalo a solo 19900. 
  

  

  


  

  

  


  

  

  
  

  
  



convenios con empresas, 
cotice aqui

Si no quiere recibir nuestras ofertas, 
haga click aqui
Acatando la nueva Ley del Consumidor 
Nº 19.496 y su modificación Nº 19.955 del 2004,en su Artículo 28b, donde 
regula el envío de correos electrónicos("Toda comunicación promocional o 
publicitaria enviada por correo electrónico deberá indicar la materia o asunto 
sobre el que versa,la identidad del remitente y contener una dirección 
válida a la que el destinatario solicite la suspensión de los envíos")