/*****************************************************************************/
/* htmlrow.h - 18/08/99 - By Christophe LOREK - CRYO-NETWORKS                */
/*                                                                           */
/* HTMLROW class                                                             */
/*                                                                           */
/* last modified on 18/08/99 By Christophe LOREK                             */
/*****************************************************************************/


#ifndef HTMLROW_H
#define HTMLROW_H

#include <stdlib.h>
#include <string.h>

#include "node.h"
#include "structs.h"
#include "../x/version.h"
#include "../x/scolplugin.h"


class HTMLROW 
{
	public :
		int x;
		int y;
		int w;
		int h;
		int cx;
		int cy;

	private :
		int		align;
		int		red,green,blue;	
		int		cols;
		int		border;
		int		frame;
		int		rules;
		int		cellspacing;
		int		cellpadding;

	public :
	
	HTMLROW(mmachine m,int align,int red,int green,int blue,int width,int cols,int border,int frame,int rules,int cellspacing,int cellpadding);

	~HTMLROW();
	int DRAWrow();

	int Align();
	int Red();
	int Green();
	int Blue();
	int Cols();
	int Border();
	int Frame();
	int Rules();
	int Cellspacing();
	int Cellpadding();

	
};

#endif
